Call an object method

From Rosetta Code
Revision as of 19:56, 16 August 2011 by rosettacode>Dkf (whitespace)
Task
Call an object method
You are encouraged to solve this task according to the task description, using any language you may know.

In object-oriented programming method is a function associated with a particular class. Methods can be static, associated with the class itself, or instance, associated with an instance of class.

ActionScript

<lang actionscript>// Static MyClass.method(someParamater);

// Instance myInstance.method(someParamater);</lang>

C++

<lang cpp>// Static MyClass::method(someParamater);

// Instance myInstance.method(someParamater);</lang>