That means that the elements of a linked list does not exist when the program starts executing
In Java, this variable is defined as follows:
List head; |
The user-defined Java class class will contain the definition of a list structure.
Regardless of the list structure, the variable head defined by
List head; |
is a reference variable in Java
|
We has discussed the reference concept in CS255 already, here is the webpage if you need a review: click here
Very important fact:
|
List head; |
corresponds to the following (ARM) assembler directives:
head: .skip 4 // Reserve 4 bytes to store a memory address // Memory address in ARM consists of 32 bits |