Search:

Type: Posts; User: Norm

Search: Search took 0.18 seconds.

  1. Replies
    5
    Views
    2,070

    Re: cant get LinkedList to compile

    You need an import statement so the compiler can find the definition of the Iterator interface.

    Start by making a skeleton class that implements the interface and has all the methods.
    Then work...
  2. Replies
    5
    Views
    2,070

    Re: cant get LinkedList to compile

    Check that all the {s have a matching } and that no methods are defined inside of other methods.
  3. Replies
    5
    Views
    2,070

    Re: cant get LinkedList to compile

    The compiler can't find a definition for the iterator() method in the LinkedListDS class.
    If you implement an interface you must define all of its methods.


    Where is the ^ located in the...
Results 1 to 3 of 3