Search:

Type: Posts; User: newbie

Search: Search took 0.08 seconds.

  1. Replies
    4
    Views
    1,534

    Re: Exception at main...

    Yeah. Saying how new to Java you are and then ending with "here's what I have" is very lazy.
    If this was a more complicated issue no one would have a clue what you were on about.

    Next time,...
  2. Replies
    4
    Views
    1,534

    Re: Exception at main...

    The length of your Object array = 2;
    The element you're trying to access using 'options[3]' = 4.

    You can't use what doesn't exist.


    Object[] options = {"Integers", "Doubles"};
    int...
Results 1 to 2 of 2