vote up 3 vote down star

As (hopefully) we all know, vector<bool> is totally broken and can't be treated as a c array. What is the best way to get this functionality? So far, the ideas I have thought of are:

  • Use a vector<char> instead, or
  • Use a wrapper class and have vector<bool_wrapper>

How do you guys handle this problem? I need the c_array() functionality.

As a side question, if I don't need the c_array() method, what is the best way to approach this problem if I need random access? Should I use a deque or something else?

Edit:

  • I do need dynamic sizing.
  • For those who don't know, vector<bool> is specialized so that each bool takes 1 bit. Thus you can't convert it to a c-style array.
  • I guess "wrapper" is a bit of a misnomer. I was thinking something like this:

Of course, then I have to read into a my_bool due to possible alignment issues :(

struct my_bool
{
    bool the_bool;
};
vector<my_bool> haha_i_tricked_you;
flag

Is there some reason not to use... a C-style array? – kquinn Mar 22 at 0:22
rlbond, do you need dynamic size? – Johannes Schaub - litb Mar 22 at 0:26
Ok I'll bite - why do you think vector is ""totally broken" ? – Andrew Grant Mar 22 at 0:27
dammit. where did i read that std::vector is specialized for <bool, std::allocator<bool>> oO vector<bool, my_allocator> won't work either :( – Johannes Schaub - litb Mar 22 at 0:31
1  
@Andrew Grant - see open-std.org/jtc1/sc22/… – Earwicker Mar 22 at 0:34
show 7 more comments

6 Answers

vote up 2 vote down check

Use std::deque if you don't need the array, yes.

Otherwise I think you're best off writing a minimal equivalent class of your own - internally allocates a C array of bool, and has the usual constructor, operators, destructor, swap, [], size, c_array, etc.

link|flag
vote up 3 vote down

Depends on your needs. I would go for either std::vector<unsigned char>. Writting a wrapper can be fine if you only use a subset of the functionality, else it will become a nightmare.

link|flag
vote up 3 vote down

That's an interesting problem.

If you need what would have been a std::vector if it was not specialized, then maybe something like that would work fine with your case :

#include <vector>
#include <iostream> 
#include <algorithm>

class Bool
{
public:

    Bool(): m_value(){}
    Bool( bool value ) : m_value(value){}

    operator bool() const { return m_value;}

    // the following operators are to allow bool* b = &v[0]; (v is a vector here).
    bool* operator& () { return &m_value; }
const bool * const operator& () const { return &m_value; }

private:

    bool m_value;

};




int main()
{
    std::vector<Bool> working_solution(10, false);


    working_solution[5] = true;
    working_solution[7] = true;


    for( int i = 0; i < working_solution.size(); ++i )
    {
    	std::cout<< "Id " << i << " = " << working_solution[i] << "(" <<(working_solution[i] ? "true" : "false") << ")" <<std::endl; // i used ? : to be sure the boolean evaluation is correct
    }

    std::sort( working_solution.begin(), working_solution.end());
    std::cout<< "--- SORTED! ---" << std::endl;

    for( int i = 0; i < working_solution.size(); ++i )
    {
            bool* b = &working_solution[i]; // this works!

    	std::cout<< "Id " << i << " = " << working_solution[i] << "(" << (working_solution[i] ? "true" : "false") << ")" <<std::endl; // i used ? : to be sure the boolean evaluation is correct
    }

    std::cin.get();
    return 0;
}

I tried this with VC9 and it seems to work fine. The idea of the Bool class is to simulate the bool type by providing the same behavior and size (but not the same type). Almost all the work is done by the bool operator and the default copy constructors here. I added a sort to be sure it react as assumed when using algorithms.

Not sure it would suit all cases. If it's right for your needs, it would be less work than rewriting a vector-like class...

link|flag
not complette solution you cant write something like: bool *b = &v[0]; – bb Mar 22 at 2:08
That's right, you can only reinterpret_cast it. – Klaim Mar 22 at 12:59
as solution we could add bool* operator & () { return &m_value; } and conversion to const bool*, to bool& and const bool&. But anyway - main idea is correct. – bb Mar 22 at 13:38
Probably adding an assignment operator so that you can write v[0] = true/false; – dribeas Mar 22 at 18:38
bb> Thanks I was looking for a way to express it and your suggestion works! Adding it to the example. dribeas> you can already do that with no more code, see the "working_solution[5] = true;" line. – Klaim Mar 22 at 20:16
vote up 1 vote down

this problem was already discussed on comp.lang.c++.moderated (http://groups.google.ru/group/comp.lang.c++.moderated/browse_thread/thread/b8d6dd59dfb295c0/e23e0f606d64550a)
proposed solutions:

  • your own allocator (based on std::allocator) and own vector specialization;
  • use std::deque (as early was recommended in one of books S. Mayers ) - but this not for your requirements;
  • make POD bool wrapper;
  • use something (char/int/etc) with same size as bool instead bool;

also early I saw proposal for standard commitette - introduce macro (something like STD_VECTOR_BOOL_SPECIAL) for dissallow this specialization - but afaik this proposal was not implemented in stl implementations and wasn't approoved.

it seems that your problem has no ways to do this nicely.. maybe in C++0x

link|flag
vote up 1 vote down

Consider using a vector< int >. Once you get past compilation and type checking, bool and int are both just machine words (edit: apparently this is not always true; but will be true on many PC architectures). In those cases where you want to convert without a warning, use "bool foo = !!bar", which converts zero to false and non-zero to true.

A vector< char > or similar will use less space, though it also has the potential to take a (very small) speed hit in some circumstances, because characters are less than the machine word size. This is, I believe, the main reason that bools are implemented using ints instead of chars.

If you really want clean semantics, I also like the suggestion of making your own boolean class -- looks like a bool, acts like a bool, but fools the template specialization.

Also, welcome to the club of people who want the vector< bool > specialization dropped from the C++ standard (with bit_vector to replace it). It's where all the cool kids hang out :).

link|flag
bool and int are not both necessarily machine words. On the system I develop for, sizeof( bool ) = 1 and sizeof( int ) = 4. The alignment requirements and generated load/store instructions differ correspondingly. – leander Mar 22 at 13:41
vote up 0 vote down

You may want to check your compiler/library suite. There was a way to get vector to behave "sanely" (albeit not according to the standard) using a compiler flag in CodeWarrior, if I recall correctly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.