这就是我想要做的。
假设某个类Target
具有某种方法:
class Target {
public void targetMethod() {}
}
以及调用Listener
时应该以某种方式知道的类targetMethod()
:
class Listener {
public static void listenForTargetMethod() {
//code executes when targetMethod() is invoked
}
}
是否有可能以及如何实现? (无需显式调用listenForTargetMethod()
)