how do I make a pointer to a multidimensional array, which have a unknown size? I've tried this:
int **triangles;
triangles = new int[numTriangles][3];
But i get this error:
cannot convert 'int (*)[3]' to 'int**' in assignment
|
|
how do I make a pointer to a multidimensional array, which have a unknown size? I've tried this:
But i get this error:
|
|||
|
|
|
Then access it as:
But this is tedious and error prone so I suggest using boost.multi_array instead, or rolling your own (really simple):
If, on the other hand, you actually want an array of triangles, rather than a twodimensional array, just use a |
||||||
|
|
|
Multidimensional arrays in c++ are just syntactic sugar.
is equivalent to
so you just need a regular pointer - i.e.:
|
||
|
|
|
|
Well, the error message says it :) If you 'new an array, then new returns a pointer to its first element. A multidimensional array is just another name for an array of arrays. You 'newed an array of
Of course, typedefs also help here:
The parentheses are needed because of the C++ precedence rules. They tell the compiler that it's not creating an array of three pointers to integers, but a pointer to an array of 3 integers. This is similar to the more common use on function pointers ( |
||||||||||
|
|
|
To do this, you will have to loop over one dimension and allocate space for the other dimension:
But be careful when doing it this way, you'll have to do the same to deallocate the memory.
|
|||
|