New (UserStatistics constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 1: Line 1:
<span style="font-size:120%; color:black"><b>Create new UserStatistics object</b></span>
{{Template:UserStatistics:New subtitle}}
[[Category:UserStatistics methods|New constructor]]
<!--DPL?? Category:UserStatistics methods|New constructor: Create new UserStatistics object-->
<!--DPL?? Category:System methods|New (UserStatistics constructor): Create new UserStatistics object-->
<p>
New is a member of the [[UserStatistics class]].
</p>


This method
This method
creates a new instance of the UserStatistics class with a snapshot
creates a new instance of the UserStatistics class with a snapshot
of the user's statistics.
of the user's statistics.
===Syntax===
==Syntax==
  %ustat = New
{{Template:UserStatistics:New syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<dl>
Line 18: Line 12:


</dl>
</dl>
===Usage Notes===
==Usage notes==
<ul>
<ul>
<li>New is a constructor and as such can be called with no object,
<li>New is a constructor and as such can be called with no object,
Line 28: Line 22:
</p>
</p>
</ul>
</ul>
==See also==
{{Template:UserStatistics:New footer}}

Revision as of 20:42, 14 March 2011

Create a new UserStatistics instance (UserStatistics class)


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

Syntax

%userStatistics = [%(UserStatistics):]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

See also