Search:

Type: Posts; User: Norm

Search: Search took 0.13 seconds.

  1. Thread: Java pointers

    by Norm
    Replies
    5
    Views
    1,215

    Re: Java pointers

    The only link I have is to the java tutorial:
    Trail: Learning the Java Language: Table of Contents (The Java™ Tutorials)
    The Really Big Index
  2. Thread: Java pointers

    by Norm
    Replies
    5
    Views
    1,215

    Re: Java pointers

    In the posted code, the variable cl points to an object.
    If next is a reference to the next node in the list, then p will point to that node.

    Without definitions for the variables (the code), I...
  3. Thread: Java pointers

    by Norm
    Replies
    5
    Views
    1,215

    Re: Java pointers

    Given a list or array, an index(pointer) to the list "points" to one element in the list. To get the next element in the list, increment the index by one.
    If the list is a linked list, then the...
Results 1 to 3 of 3