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): ??? { }
}
|
|
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 ???
|
||||||
|
|
|
You can't initialize the size of an array with a non-const dimension that can be calculated at compile time (at least not in current C++ standard, AFAIK). I recommend using std::vector instead of array. It provides array like syntax for most of the operations. |
||||
|
|
|
Two options: Use std::vector. This allows easy re-sizing of the array. Both can be correctly initialized in the constructors initializer list. |
||
|
|
|
|
I don't think it can be done. At least not the way you want. You can't create a statically sized array (array[]) when the size comes from dynamic information (x). You'll need to either store and pointer-to-int, and the size, and overload the copy constructor, assignment operator, and destructor to handle it, or use std::vector.
|
||
|
|
|
|
Declare your array as a pointer. You can initialize it in the initializer list later through through new. Better to use vector for unknown size. You might want to look at this question as well on variable length arrays. |
||||||||
|
|
|
You can't do it in C++ - use a std::vector instead:
|
|||
|
|
|
|
Use the new operator:
|
||||||
|
|
|
Instead of using a raw array, why not use a vector instead.
Using a vector will give you automatic leak protection in the face of an exception and many other benefits over a raw array. |
|||