RosettaCodeData/Task/Respond-to-an-unknown-method-call/00-TASK.txt
2023-07-01 13:44:08 -04:00

12 lines
505 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>