vote up 1 vote down star

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): ??? { }
}
flag

58% accept rate
If you plan to use C++ regularly, I strongly recommend you familiarize yourself with the standard template library. It makes working with collections of data much easier. – Brian Apr 15 at 14:38
As an aside, vectors make it relatively easy to work with the array without knowing the size in advance. It isn't necessary to know the size in advance; you can append elements to the end of a vector in (amortized) O(1) time anyhow using push_back. – Brian Apr 15 at 14:43
Using vectors brings new problems, since the class I'm trying to vectorize has protected "new" operators. But that wasn't what I asked so nevermind. – zarawesome Apr 16 at 17:12

7 Answers

vote up 9 vote down check

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.

link|flag
What would the syntax for using a vector in that situation be like? – zarawesome Apr 15 at 14:13
vector< int > array; Class( x ) : array( x ) {}; – DevSolar Apr 15 at 14:15
vote up 0 vote down

Two options:

Use std::vector. This allows easy re-sizing of the array.
Use std::tr1::array. This has a static size.

Both can be correctly initialized in the constructors initializer list.

link|flag
vote up 1 vote down

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.

class Class
{
  ::std::vector<int> array;
  Class(int x) : array(x) { }
};
link|flag
vote up 0 vote down

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.

link|flag
better to use the vector for known size too – Neil Butterworth Apr 15 at 14:17
have to agree on that – Shree Apr 15 at 14:24
BAD idea. Doing the memory management on a pointer that acts like an array is not trivial in the presence of exceptions. Use std::vector or std::tr1::array. – Martin York Apr 15 at 15:51
accepted, but this was just an option in response to the original question – Shree Apr 15 at 16:11
vote up 0 vote down

You can't do it in C++ - use a std::vector instead:

#include <vector>

struct A {
   std::vector <int> vec; 
   A( int size ) : vec( size ) {
   }
};
link|flag
vote up 1 vote down

Use the new operator:

class Class
{
   int* array;
   Class(int x) : array(new int[x]) {};
};
link|flag
Don't forget to call delete[] in the constructor if you use this code. – Brian Apr 15 at 14:14
1  
If you do this you will also need a copy constructor , an assignment operator and a destructor. Useing a std::vector gives you exactly the same functionality but requires none of these. – Neil Butterworth Apr 15 at 14:15
vote up 2 vote down

Instead of using a raw array, why not use a vector instead.

class SomeType {
  vector<int> v;
  SomeType(size_t x): v(x) {}
};

Using a vector will give you automatic leak protection in the face of an exception and many other benefits over a raw array.

link|flag
Do you mean "Using a vector will give you automatic leak protection"? :) – Matt Kane Apr 15 at 14:24
@mkb, that's twice today I've made fundamentally stupid comments. Must drink more coffee to wake up before i start posting ;) – JaredPar Apr 15 at 14:28

Your Answer

Get an OpenID
or

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