Java does not have the concept of pointers . So how does java implement the implicitly available linkedList or even make a shallow copy for that matter ?
|
|
Java does have references that can point to another object, or null. That is all that is needed for a linked list. You do the general purpose linked list in C by having a struct for node, likewise, the LinkedList would in Java contain also a private class for a node with reference to the actual value, and 1 or more references to the node class for links. |
|||||||||
|
|
Java has references. These are like pointers except that you cannot do things like pointer arithmetic, or casting pointers to integers and vice-versa. Naturally, linked lists are implemented using references. The reasons that Java eschews pointer arithmetic and conversion between integers and pointers include:
|
||||
|
|
|
You can certainly easily implement your own linked lists in Java. You can also use the java.util.LinkedList Class. Here is a simple LinkedList implementation from Ivor Horton's book "Beginning Java":
|
||||
|