New (UserStatistics constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 7: Line 7:
{{Template:UserStatistics:New syntax}}
{{Template:UserStatistics:New syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt><i>%ustat</i>
<tr><th><i>%ustat</i></th>
<dd>A UserStatistics object variable to contain the new object instance.
<td>A UserStatistics object variable to contain the new object instance.</td></tr>
 
</table>
</dl>
==Usage notes==
==Usage notes==
<ul>
<ul>

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