Item (Arraylist property): Difference between revisions
Jump to navigation
Jump to search
m (cross refernece better) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:Arraylist:Item subtitle}} | {{Template:Arraylist:Item subtitle}} | ||
<var>Item</var> is a ReadWrite property returns or sets the indicated item in the <var>Arraylist</var>. For additional description of this method, see [[Collections#Coding considerations for collections|"Coding considerations for collections"]]. | <var>Item</var> is a <var>ReadWrite</var> property that returns or sets the indicated item in the <var>Arraylist</var>. For additional description of this method, see [[Collections#Coding considerations for collections|"Coding considerations for collections"]]. | ||
==Syntax== | ==Syntax== |
Revision as of 17:52, 1 June 2012
Return or set Arraylist item value (Arraylist class)
Item is a ReadWrite property that returns or sets the indicated item in the Arraylist. For additional description of this method, see "Coding considerations for collections".
Syntax
%currentItem = al:Item( number) al:Item( number) = newItem
Syntax terms
%currentItem | A variable of the same type as specified on the al declaration to contain the value of the specified al item. |
---|---|
al | An Arraylist object. |
number | A whole number greater than 0 to identify an al item by its position within the arraylist. If number is greater than the number of items in the al, or if it is less than or equal to zero, the request is cancelled. |
newItem | A value of the same type as specified on the al declaration to be assigned to the specified al item. |
Usage notes
- The
Item
keyword is not required. For instance, in the For loop in the Arraylist class example,print %alist(%i)
is equivalent to:print %alist:Item(%i)
See also
- Explicitly references to retrieve or set just the first or last item in an Arraylist can be done via FirstItem or LastItem respectivly.