Example: ObjectList cont.
class Node {
Object obj;
Node next;
Node(Object newobj) {
obj = newobj;
next = null;
}
setNext(Node node) {
next = node;
}
}
Previous slide
Next slide
Back to first slide
View graphic version