Domanda

As we all probably know the C++ 98 vector<bool> specialization stores boolean values as bits rather than as bool variables. vector<bool>'s elements aren't addressable because C++ doesn't have pointers and references to bits, is there a workaround to this, any obvious pitfalls (that i seem to be oblivious to) and is it practical to even try and do so?

È stato utile?

Soluzione

vector<bool>'s elements are addressable as any other vector's elements e.g. with operator []. However, the operations will be slower, because of the memory compression.

Maybe faster implementation will use your own inmemory implementation and use binary shifts to address specific boolean value.

Also an alternative will be to use simple array in places where this is appropriate. Remember that you can allocate it dynamically using the new operator.

EDIT Alternative implementations might be found e.g. in this thread.

Altri suggerimenti

Instead of references/pointers to bits, vector<bool> uses wrapper objects with overloaded operators that behave (in most cases) like references/pointers to booleans.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top