New (UserStatistics constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 23: Line 23:
with an explicit class
with an explicit class
name, or with an object variable, even if that object is null:
name, or with an object variable, even if that object is null:
<pre>
<p class="code">%ustat = new
    %ustat = new
%ustat = %(userStatistics):new
    %ustat = %(userStatistics):new
%ustat = %ustat:new
    %ustat = %ustat:new
</p>
</pre>
</ul>
</ul>

Revision as of 16:58, 28 February 2011

Create new UserStatistics object

New is a member of the UserStatistics class.

This method creates a new instance of the UserStatistics class with a snapshot of the user's statistics.

Syntax

  %ustat = New

Syntax terms

%ustat
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