Tagged Questions

2
votes
2answers
148 views

C++0x, Compiler hooks and hard coded languages features.

I'm a little curious about some of the new features of C++0x. In particular range-based for loops and initializer lists. Both features require a user-defined class in order to function correctly. I …
1
vote
7answers
4k views

C++: Initialize array size in constructor initializer list

In the code below I would like array to be defined as an array of size x when the Class constructor is called. What should be in ??? class Class { int array[]; Class(x): ??? { } }