Search:

Type: Posts; User: wholegrain

Search: Search took 0.09 seconds.

  1. Re: Shouldn't "list" be a parameter of the method Create()?

    Wait, I think I remember now... You don't need to declare it if it's an array that's returned, only if it's an integer double or a string and so on. Right?
  2. Re: Shouldn't "list" be a parameter of the method Create()?

    Since we return list, shouldn't list be a parameter of the method create()?

    I thought we'd have to write: "create(String nameFile, List[] list)" or something similar.
  3. Shouldn't "list" be a parameter of the method Create()?

    static LinkedList<People> Create(String nameFile)
    throws IOException
    { LinkedList<People> list = new LinkedList<People>();
    boolean Fileexists = true ;

    FileReader fi = null;


    ...
Results 1 to 3 of 3