我正在学习 Squeak,我想知道是否有办法“存储”要发送到对象的消息。
例如,我希望能够执行以下操作:
Delegator>>performWith: arg
|target method|
target := MyObject new.
method := #myMethod. "Not sure what goes here"
target sendMessage: method withArgs: arg. "Or how this call would work"
另一种方法是在一个块中指定目标和方法。但是可以使用上述方法吗?