how do you initialize and uninitialize a multidimensional character array in C++?
|
|
|||||
|
|
|
Read the FAQ -- you'll find everything you need there! Creation: Statically allocated:
Dynamically allocated: Nested Initialization: Nested for loops; as many Unitialization: Do you mean Destruction? Statically allocated: The compiler does this when the stack frame is unwound (or for global variables -- when the program stops running). Dynamically allocated:
|
||
|
|
|
|
This is interesting, and this requires a serious look. The answer given by roo is a widely used one, but I like his observation - just because it compiles doesn't mean it works I would think a better solution would be to allocate a contigious block of memory (rows * cols) long and then treat it as a 2D array? |
||
|
|
|
|
I suggest you use the Boost.Multi_Array library. The dimension of the array has to be provided at compile-time, but the sizes are only used at runtime. That means that you have the advantages of dynamic allocation without the pain of having to deal with memory issues. Here goes the example from the Boost documentation.
|
||
|
|
|
|
you can initialize a multidimensional array like this:
in that case the seperate values would be:
|
|||
|
|
|
|
A quick snippet - it compiles in g++.
|
|||
|
