Arraylist class: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→See also) |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
<!-- Arraylist class --> | <!-- Arraylist class --> | ||
An <var>Arraylist</var> can be thought of as a traditional array with no bounds and | |||
much more flexibility. | much more flexibility. | ||
The following code | The following code shows several of the <var>Arraylist</var> 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 | ||
Line 28: | Line 26: | ||
</p> | </p> | ||
==List of Arraylist methods== | |||
The [[List of Arraylist methods|"List of Arraylist methods"]] shows all the class methods, with a brief description of each. | |||
==See also== | ==See also== | ||
<table | <table class="thJustBold"> | ||
<tr><th>[[Collections]]</th> | <tr><th>[[Collections]]</th> | ||
<td>For background information about collections and <var>Arraylist</var>s and about | <td>For background information about collections and <var>Arraylist</var>s and about | ||
Line 44: | Line 38: | ||
<td>For tips on using collections.</td></tr> | <td>For tips on using collections.</td></tr> | ||
</table> | </table> | ||
[[Category:System classes]] | [[Category:System classes]] |
Latest revision as of 21:25, 26 June 2013
An Arraylist can be thought of as a traditional array with no bounds and much more flexibility.
The following code shows 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
List of Arraylist methods
The "List of Arraylist methods" shows all the class methods, with a brief description of each.
See also
Collections | For background information about collections and Arraylists and about declaring Arraylist object variables. |
---|---|
Coding considerations for collections | For tips on using collections. |