Possible Duplicate:
initialize a const array in a class initializer in C++
If I have a class with a member variable that is an array of bools, how can I initialize the array in the initializer list of the constructor to all false values? Or will they be initialized by default to all false?
class example {
public:
example()
: // What goes here to initialize _test to 64 false values?
{
}
private:
bool _test[64];
};