Search:

Type: Posts; User: Norm

Search: Search took 0.15 seconds.

  1. Thread: ArrayList Help

    by Norm
    Replies
    10
    Views
    1,522

    Re: ArrayList Help

    I've always found that when reading the API doc to resolve some specific problem, I see some other things that will come in handy in the future. End result is I solve the current problem and build...
  2. Thread: ArrayList Help

    by Norm
    Replies
    10
    Views
    1,522

    Re: ArrayList Help

    a (a poor name for a variable that is supposed to hold some kind of data) is a reference to an ArrayList, not an array. When working with objects, you call their methods using ()s not []s.
    You...
  3. Thread: ArrayList Help

    by Norm
    Replies
    10
    Views
    1,522

    Re: ArrayList Help

    I assume you are trying to call the get() method.
    use () with method calls. [] is for arrays.
Results 1 to 3 of 3