New (UserStatistics 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>Create new UserStatistics object</b></span>
<span style="font-size:120%; color:black"><b>Create new UserStatistics object</b></span>
[[Category:UserStatistics methods|New constructor]]
[[Category:UserStatistics methods|New constructor]]
[[Category:System methods]]
<!--DPL?? Category:UserStatistics methods|New constructor: Create new UserStatistics object-->
<!--DPL?? Category:UserStatistics methods|New constructor: Create new UserStatistics object-->
<!--DPL?? Category:System methods|New (UserStatistics constructor): Create new UserStatistics object-->
<!--DPL?? Category:System methods|New (UserStatistics constructor): Create new UserStatistics object-->

Revision as of 19:51, 31 December 2010

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