Say I've got a class like this:
class Test
{
int x;
SomeClass s;
}
And I instantiate it like this:
Test* t = new Test;
Is x on the stack, or the heap? What about s?
|
1
|
Say I've got a class like this:
And I instantiate it like this:
Is x on the stack, or the heap? What about s?
|
||
|
|
|
|
Each time you "instantiate" an object/symbol using a new (we are speaking C++ here), a new memory zone will be allocated for this object. If not, it will be put on the "local" memory zone. The problem is that I have no standard definition for "local" memory zone. An exampleThis means that, for example:
The object aa00 is allocated on the stack. As aa00::b is allocated on a "local" memory according to aa00, aa00::b is allocated inside the memory range allocated by the new aa01 instruction. Thus, aa00::b is also allocated on stack. But aa00::c is a pointer, allocated with new, so the object designed by aa00::c is on the heap. Now, the tricky example: aa01 is allocated via a new, and as such, on the heap. In that case, as aa01::b is allocated on a "local" memory according to aa01, aa00::b is allocated inside the memory range allocated by the new aa01 instruction. Thus, aa00::b is on the heap, "inside" the memory already allocated for aa01. As aa01::c is a pointer, allocated with new, the object designed by aa01::c is on the heap, in another memory range than the one allocated for aa01. ConclusionSo, the point of the game is: Sorry, I have no better vocabulary to express those concepts. |
||||
|
|
|
a, and all its members, are on the stack. The object pointed to by t, and all its members, are on the heap. The pointer t is on the stack. |
||
|
|
|
Since you've used |
||
|
|
|
|
t is on the stack. The object at *t is on the heap. It contains an int and a SomeClass object next to each other in a unit. |
||
|
|
|
|
Since you're using new, you're allocating your object on the heap. Consequently, every members of the Test pointed by t are on the heap too. |
||
|
|
|
|
a is on the stack; its members a.i and a.m (including any members of a.m) and a.p (the pointer, not the object it points to) are part of it and so also on the stack. The object pointed to by a.p is on the heap. The object pointed to by b is on the heap, including all its members; and so is the object pointed to by b.p. |
||
|
|