[EMAIL PROTECTED] wrote:
> Hi all,
> 
> Whats the difference between class methods and instance methods on
> perl ? 

A class method can be called without reference to a specific instance. Any
data it accesses is global. Constructors are class methods. An instance
method accesses member data of a specific class instance, and must be called
with reference to that instance.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to