RosettaCodeData/Task/Respond-to-an-unknown-method-call/00DESCRIPTION
2017-09-25 22:28:19 +02:00

11 lines
503 B
Text

;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.
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.
;Related task:
*   [[Send an unknown method call]].
<br><br>