Search:

Type: Posts; User: jps

Search: Search took 0.07 seconds.

  1. Re: Need help with understanding a homework assignment, not asking for answers

    extractedInfo[i][0];
    That line does not really DO anything.

    If I had a HashMap full of keys to ArrayLists, I would first write code that would iterate the HashMap and println the keys to me....
  2. Re: Need help with understanding a homework assignment, not asking for answers

    Variables are valid only within the scope for which they are declared. Looking again at the sample Person class, myAge was declared inside the class, outside of any method. That makes the variable...
  3. Re: Need help with understanding a homework assignment, not asking for answers

    Hit up your favorite search engine for "java scope" for details.

    You declared uniport inside the main method. That means uniport is only a valid variable name within the { and } of public static...
  4. Re: Need help with understanding a homework assignment, not asking for answers

    You are welcome




    Look at your class as an entity which can have material things and abilities. Say for example a person. A person can have their own things, right? A person can perform...
  5. Re: Need help with understanding a homework assignment, not asking for answers

    What is the first step taught in your class?
    Where are you stuck?

    If the assignment is reading and writing files, surely you can get some of the code written. Plan out what you need to do, and...
Results 1 to 5 of 5