+ 1
Why it fails to take address of bool from vector
Hi Please refer code below: It works fine with existing code. If I uncomment the code from main function, it fails to compile for bool. How to solve this? https://sololearn.com/compiler-playground/c5P3n3O7R6dk/?ref=app
5 odpowiedzi
+ 3
vector<bool> is implented differently for optimization reasons
https://en.cppreference.com/w/cpp/container/vector_bool
you can't access the items by reference.
vector<bool> v = {false,false,true,false};
// you can't do this
for(auto& b: v)
cout << b << endl;
// but you can do this
for(auto b: v)
cout << b << endl;
+ 3
😁 maybe. but the committee decided otherwise. perhaps to avoid breaking things.
it is what it is.
interesting discussion about vector<bool> and various pros and cons, use cases, alternatives, etc
https://www.reddit.com/r/cpp/s/eP6LzMF8Rz
+ 2
you said it. optimization.
0
Yeah now i recall that vector<bool> is space optimized
Just curious why such exception was approved by committee for vector of bool
0
But it is an exception and One has to keep this exception in mind always