New (FloatNamedArraylist constructor): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Template:FloatNamedArraylist:New subtitle}} | |||
This method returns a new instance of a <var>FloatNamedArraylist</var> object. | |||
< | |||
</ | |||
==Syntax== | ==Syntax== | ||
{{Template:FloatNamedArraylist:New syntax}} | |||
===Syntax Terms=== | ===Syntax Terms=== | ||
< | <table class="syntaxTable"> | ||
< | <tr><th>%fltNal</th> | ||
< | <td>A <var>FloatNamedArraylist</var> object variable that is set to a new <var>FloatNamedArraylist</var> object reference.</td></tr> | ||
object reference. | <tr><th nowrap="true"><var>[%(FloatNamedArraylist Of </var>itemType<var>):]</var></th> | ||
<td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>. See "Usage notes," below, for more information about invoking a collection <var>Constructor</var>.</td></tr> | |||
</ | </table> | ||
==Usage Notes== | ==Usage Notes== | ||
<ul> | <ul> | ||
<li>New | <li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class specification, or with an object variable, even if that object is <var>Null</var>: | ||
object, with an explicit class | <p class="code">%fltNal = new | ||
even if that object is | |||
< | %fltNal = %(floatNamedArraylist of longstring):new | ||
%fltNal = %fltNal:new | |||
</p> | |||
</ | '''Note:''' | ||
: | As shown above, when explicitly indicating the | ||
class, both the collection and the item datatype must be | |||
class, both the collection and item | |||
specified just as they are on the collection variable's declaration: | specified just as they are on the collection variable's declaration: | ||
< | <p class="code">%fltrayl is floatNamedArraylist of longstring | ||
%fltrayl = %(floatNamedArraylist of longstring):new | |||
</p> | |||
</ | |||
</ul> | </ul> |
Latest revision as of 19:29, 6 August 2012
Create a new FloatNamedArraylist object (FloatNamedArraylist class)
This method returns a new instance of a FloatNamedArraylist object.
Syntax
%fltNal = [%(FloatNamedArraylist Of itemType):]New
Syntax Terms
%fltNal | A FloatNamedArraylist object variable that is set to a new FloatNamedArraylist object reference. |
---|---|
[%(FloatNamedArraylist Of itemType):] | The optional class name in parentheses denotes a Constructor. See "Usage notes," below, for more information about invoking a collection Constructor. |
Usage Notes
- As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class specification, or with an object variable, even if that object is Null:
%fltNal = new %fltNal = %(floatNamedArraylist of longstring):new %fltNal = %fltNal:new
Note: As shown above, when explicitly indicating the class, both the collection and the item datatype must be specified just as they are on the collection variable's declaration:
%fltrayl is floatNamedArraylist of longstring %fltrayl = %(floatNamedArraylist of longstring):new