public class List
{
int value;
List next; // This is a "reference" (= address) variable !!
}
|
A List object has the following structure:
|
The offset of the
field value from the
base address is
0
The offset of the
field next from the
base address is
4