New (UnicodeNamedArraylist constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
 
Line 1: Line 1:
<span style="font-size:120%; color:black"><b><section begin=dpl_desc/>Create new UnicodeNamedArraylist instance<section end=dpl_desc/></b></span>
{{Template:UnicodeNamedArraylist:New subtitle}}
[[Category:UnicodeNamedArraylist methods|New constructor]]
 
<!--DPL?? Category:UnicodeNamedArraylist methods|New constructor: Create new UnicodeNamedArraylist instance-->
This method returns a new instance of a <var>UnicodeNamedArraylist</var> object.
<p>
New is a member of the [[UnicodeNamedArraylist class]].
</p>


This method returns a new instance of a UnicodeNamedArraylist.
==Syntax==
==Syntax==
  %unamrayl = New
{{Template:UnicodeNamedArraylist:New syntax}}
===Syntax Terms===
===Syntax Terms===
<dl>
<table class="syntaxTable">
<dt><i>%unamrayl</i>
<tr><th>%uniNal</th>
<dd>A UnicodeNamedArraylist object that is set to a new UnicodeNamedArraylist
<td>A <var>UnicodeNamedArraylist</var> object variable that is set to a new <var>UnicodeNamedArraylist</var> object reference.</td></tr>
object reference.
<tr><th nowrap="true"><var>[%(UnicodeNamedArraylist 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>
</dl>
</table>
==Usage Notes==
==Usage Notes==
<ul>
<ul>
<li>New is a constructor and therefore can be called with no
<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 name, or with an object variable,
<p class="code">%uniNal = new
even if that object is null:
 
<pre style="xmp">
%uniNal = %(unicodeNamedArraylist of object internationalShipment):new
    %unamrayl = new
 
    %unamrayl = %(unicodeNamedArraylist):new
%uniNal = %uniNal:new
    %unamrayl = %unamrayl:new
</p>
</pre>
'''Note:'''
:note
As shown above, when explicitly indicating the
When using the second of these syntax options of New, which explicitly indicates the
class, both the collection and the item datatype must be
class, both the collection and item datatypes must be
specified just as they are on the collection variable's declaration:
specified just as they are on the collection variable's declaration:
<pre style="xmp">
<p class="code">%unirayl is unicodeNamedArraylist of object customer
    %unamrayl collection UnicodeNamedArraylist of longstring
%unirayl  = %(unicodeNamedArraylist of object customer):new
    %unamrayl = %(UnicodeNamedArraylist of longstring):new
</p>
</pre>
</ul>
</ul>

Latest revision as of 19:28, 6 August 2012

Create a new UnicodeNamedArraylist object (UnicodeNamedArraylist class)


This method returns a new instance of a UnicodeNamedArraylist object.

Syntax

%uniNal = [%(UnicodeNamedArraylist Of itemType):]New

Syntax Terms

%uniNal A UnicodeNamedArraylist object variable that is set to a new UnicodeNamedArraylist object reference.
[%(UnicodeNamedArraylist 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:

    %uniNal = new %uniNal = %(unicodeNamedArraylist of object internationalShipment):new %uniNal = %uniNal: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:

    %unirayl is unicodeNamedArraylist of object customer %unirayl = %(unicodeNamedArraylist of object customer):new