none
[openafs-wiki.git] / TWiki / ClassMethod.mdwn
1 A [[ClassMethod]] is a method that must be called relative to the containing class object. This normally only applies to the `new` method used to create new object instances. For example,
2
3 # <a name="package Telecoms"></a> package Telecoms
4
5 ## <a name="ClassMethod new()"></a> [[ClassMethod]] new()
6
7     my $mobile = new Telecoms();
8
9 or
10
11     my $mobile = Telecoms->new();
12
13 **_Related Topics:_** [[DeveloperDocumentationCategory]], [[StaticMethod]], [[ObjectMethod]]