Call an object method

From Rosetta Code
Revision as of 19:58, 16 August 2011 by rosettacode>Dkf (→‎Tcl: Added implementation)
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>

Tcl

<lang tcl>package require Tcl 8.6

  1. "Static" (on class object)

MyClass method someParameter

  1. Instance

$myInstance method someParameter</lang>