List (Arraylist function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
m (1 revision) |
||
Line 16: | Line 16: | ||
{{Template:Arraylist:List syntax}} | {{Template:Arraylist:List syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
< | <table class="syntaxTable"> | ||
< | <tr><th><i>%arrayl</i></th> | ||
< | <td>A declared or existing Arraylist object. </td></tr> | ||
< | <tr><th><i>itemlist</i></th> | ||
< | <td>A comma-delimited set of values or variables of the same type as specified on the ''%arrayl'' declaration. Each of these, from left to right, becomes an item in the resultant new Arraylist, ''%arrayl''.</td></tr> | ||
values or variables of the same type as specified on the ''%arrayl'' | </table> | ||
declaration. | |||
Each of these, from left to right, | |||
becomes an item in the resultant new Arraylist, ''%arrayl''. | |||
</ | |||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> |
Revision as of 23:28, 19 January 2011
Construct and populate a new Arraylist (Arraylist class)
List is a member of the Arraylist class.
This shared function is a virtual constructor, or factory method, for Arraylists. The List method invokes the creation of a new Arraylist instance, then populates that instance with items that are, respectively, the values of the method arguments.
List is available in Sirius Mods version 7.3 and later.
Syntax
%newList = [%(Arraylist Of itemType):]List( itemList)
Syntax terms
%arrayl | A declared or existing Arraylist object. |
---|---|
itemlist | A comma-delimited set of values or variables of the same type as specified on the %arrayl declaration. Each of these, from left to right, becomes an item in the resultant new Arraylist, %arrayl. |
Usage notes
- For more information about factory methods, see ?? refid=vconst..
- The maximum number of itemlist values is 62.
- List is a constructor and as such can be called with no method
object, with an explicit class name, or with an object variable,
even if that object is null:
%arrayl = List(&'italic(itemlist)) %arrayl = %(Arraylist):List(&'italic(itemlist)) %arrayl = %arrayl:List(&'italic(itemlist))
- note
If using the second of these syntax options, which explicitly indicates the class, both the collection and item datatypes must be specified exactly as they are on the collection variable's declaration:
%arrayl is collection Arraylist of longstring %arrayl = %(Arraylist of longstring):List(&'italic(itemlist))
- You can also use the List method in contexts where an Arraylist object is a method parameter.
Examples
- The following List method call creates a new Arraylist instance
of 11 integer items that begins with 1 and whose subsequent items are,
respectively, the sum of the preceding two integers:
%fib is collection arraylist of float %fib = list(1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89)
- The following List call creates a new Arraylist instance whose
items are objects of user class Freight:
class freight public variable a is float variable b is float constructor newf(%a is float, %b is float) end public ... end class ... %ark is arraylist of object freight %ark = list(newf(11, 14), newf(4, 6), newf(9, 77), - newf(-7, 1234))