I have two instance variables, head and tail. In the code there's a line:
head = tail = new Node<E>();
Does this mean that there are two instances, head and tail, of class Node? I'm quite confused here.
|
|
|
It simply means:
So there are 2 references ( |
|||||||||||||||||
|
|
This means there are TWO references to ONE Object The line |
|||
|
|
|
No, there's only one instance of |
|||
|
|
|
Only one instance of |
|||
|
|
|
The 2 references |
||||
|
|
|
No certainly not. Here's what's happening in this code, in sequence.
|
|||
|
|