Search:

Type: Posts; User: sim18

Search: Search took 0.10 seconds.

  1. Replies
    4
    Views
    1,588

    Re: ArrayLinearList and its's sub class help

    Hi thanks for replying,

    I managed to get it working using the code:



    public void addItem()
    {
    Scanner scanner = new Scanner(System.in);
    System.out.println("What item would...
  2. Replies
    4
    Views
    1,588

    Re: ArrayLinearList and its's sub class help

    I'm still really confused I have been going over it for a while now.

    Scanner scanner = Scanner(system.in)
    System.out.println("Choose option!") //User presses option 1
    option = scanner.next //...
  3. Replies
    4
    Views
    1,588

    ArrayLinearList and its's sub class help

    I have a class called ArrayLinearList


    public class ArrayLinearList implements LinearList
    {
    protected Object [] element;
    protected int size;

    I have made a subclass of ArrayLinearList
Results 1 to 3 of 3