HBObject() > Methods for object creation and initialization |
Initializes class variables of a class.
:initClass( [<params,...>] ) --> self
The method returns the object self.
Method :initClass() is implicitly called from the Class function declared with the CLASS declaration. It serves the purpose of initializing class members which exist only once in a class and have the same values for all instances of a class. An alternative initialization of class variables is provided with the INIT clause of the CLASSDATA declaration of a class. This is the recommended way for initializing class variables.
http://www.xHarbour.com