Lets say I do something like this
int *array;
array = new int[10];
How is memory set up for this array?
What type is array[0]? (a pointer? an int?)
|
This code first allocates room for a pointer called array. This memory is allocated on the stack. Next, it allocates a block of memory from the heap to hold 10 integers and assigns the address to
And for God's sakes, start accepting some answers that people are giving you! |
|||
|
|
|
In this case, The memory is pretty simply a pointer pointing to memory to hold 10 ints that's allocated somewhere on the free store (which translates mostly to: "we honestly don't care about its address, we just care that it's our memory and we can use it 'til we delete it"). Note that in this case, you're depending on an equivalence that was originally defined in C: that One minor detail: you shouldn't do this -- probably ever. There's almost never a good reason to use |
|||
|
|
|
array[0], as an element of the array, is an int. array has already been declared a pointer to an int. In memory, the 'new' call allocates a single block of space to hold ten integers. 'array' is a pointer to the start of that block. array[0] is the first element. array[1] is the second, and so on. |
|||
|
|
Once you've finished with the memory, you must return it to the free store using
|
|||
|
|
array[0]. – chris Nov 15 '12 at 1:32