Search:

Type: Posts; User: aussiemcgr

Search: Search took 0.11 seconds.

  1. Re: The dreaded "Error: cannot find symbol" error...

    The warnings are probably because you didn't specify the type of LinkedList:
    LinkedList<String> myList = new LinkedList<>();
    Not a huge deal if you know what your doing. I'm not sure how much the...
  2. Re: The dreaded "Error: cannot find symbol" error...

    Yeah, I don't see anything wrong with this. A word of caution though, I would put your myList.add() method in the try statement. If the read throws an error, you will be adding the previous value to...
Results 1 to 2 of 2