Tagged Questions
23
votes
10answers
39k views
initialize a const array in a class initializer in C++
I have the following class in C++:
class a {
const int b[2];
// other stuff follows
// and here's the constructor
a(void);
}
The question is, how do I initialize b in the ...