Respond to an unknown method call: Difference between revisions

m
added whitespace to the task's preamble before the TOC, added a ;Task: (bold) header.
(Added Kotlin)
m (added whitespace to the task's preamble before the TOC, added a ;Task: (bold) header.)
Line 1:
{{task|Object oriented}}
 
Demonstrate how to make the object respond (sensibly/usefully) to an invocation of a method on it that it does not support through its class definitions. Note that this is not the same as just invoking a defined method whose name is given dynamically; the method named at the point of invocation must not be defined.
;Task:
Demonstrate how to make the object respond (sensibly/usefully) to an invocation of a method on it that it does not support through its class definitions.
 
Demonstrate how to make the object respond (sensibly/usefully) to an invocation of a method on it that it does not support through its class definitions. Note that this is not the same as just invoking a defined method whose name is given dynamically; the method named at the point of invocation must not be defined.
 
This task is intended only for object systems that use a dynamic dispatch mechanism without static checking.
 
 
See also [[Send an unknown method call]].
;Related task:
See* also  [[Send an unknown method call]].
<br><br>
 
=={{header|AutoHotkey}}==