New (UserStatistics constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
m (match syntax table to syntax template, tags and edits)
Line 12: Line 12:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li><var>New</var> 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:
<li><var>New</var> 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:
<p class="code">%ustat = new
<p class="code">%ustat = new
%ustat = %(userStatistics):new
%ustat = %(userStatistics):new

Revision as of 09:24, 31 March 2011

Create a new UserStatistics instance (UserStatistics class)

The New method creates a new instance of the UserStatistics class, populating it with a snapshot of the user's statistics.

Syntax

%userStatistics = [%(UserStatistics):]New

Syntax terms

%userStatistics A UserStatistics object variable to contain the new object instance.

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:

    %ustat = new %ustat = %(userStatistics):new %ustat = %ustat:new

See also