Search:

Type: Posts; User: helloworld922

Search: Search took 0.11 seconds.

  1. Re: Interating through an ArrayOrderedList and modifying elements within

    oh yeah, duh. I forgot about the whole inheritance thingy :P
  2. Re: Interating through an ArrayOrderedList and modifying elements within

    Generally, it's not a good idea to subclass an ArrayList. Arrays (and in fact all lists) should by default be ordered (not necessarily in the order you want, but they are order non-the-less).

    If...
  3. Re: Interating through an ArrayOrderedList and modifying elements within

    Java doesn't provide operator overloading, so you must use getter methods to access the data inside of the ArrayOrderedList. I'm not familiar with the ArrayOrderedList class, though. Did you mean an...
Results 1 to 3 of 3