Arraylist class: Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 4: Line 4:
    
    
The following code illustrates several of the Arraylist methods:
The following code illustrates several of the Arraylist methods:
<p class="code">
<p class="code">%alist  is collection Arraylist of longstring
%alist  is collection Arraylist of longstring
%i      is float
%i      is float
   
   
Line 21: Line 20:
</p>
</p>
This code snippet would print:
This code snippet would print:
<p class="output">
<p class="output">Idle
Idle
Jones
Jones
Cleese
Cleese

Revision as of 22:09, 4 March 2011

Arraylists can be thought of as traditional arrays with no bounds and much more flexibility.

The following code illustrates several of the Arraylist methods:

%alist is collection Arraylist of longstring %i is float %alist = new %alist:add('Idle') %alist:add('Gumby') %alist:add('Chapman') %alist:add('Pallin') %alist:insert(2, 'Jones') %alist:removeItem(4) %alist(3) = 'Cleese' for %i from 1 to %alist:count print %alist(%i) end for

This code snippet would print:

Idle Jones Cleese Pallin

The individual Arraylist methods are described in the following subsections. In the method templates, al is used to represent the object to which the method is being applied, sometimes called the "method object" or the "method Arraylist". Additional conventions are described in Notation conventions for methods.

See also

List of Arraylist methods For a list of all methods in the Arraylist class, with a brief description of each.
Collections For background information about collections and Arraylists and about declaring Arraylist object variables.
Coding considerations for collections For tips on using collections.