New (GenericNamedArraylist constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Created page with "{{Template:GenericNamedArraylist:New subtitle}} ==Syntax== %namrayl = New ===Syntax Terms=== <dl> <dt><i>%namrayl</i> <dd>A NamedArraylist object that is set to a new NamedAr...")
m (1 revision)
(No difference)

Revision as of 23:07, 26 July 2011

Create a new GenericNamedArraylist object (FloatNamedArraylist, NamedArraylist, and UnicodeNamedArraylist classes)


Syntax

%anyNal = [%(GenericNamedArraylist Of itemType):]New

Syntax terms

%namrayl
A NamedArraylist object that is set to a new NamedArraylist object reference.

Usage notes

  • New is a constructor and as such can be called with no object, with an explicit class name, or with an object variable, even if that object is null:
        %namrayl = new
        %namrayl = %(namedArraylist):new
        %namrayl = %namrayl:new
    
    note

    When using the second of these syntax options of New, which explicitly indicates the class, both the collection and item datatypes must be specified just as they are on the collection variable's declaration:

        %namrayl  is collection NamedArraylist of longstring
        %namrayl  = %(NamedArraylist of longstring):new
    

See also