我将从一段代码开始
class Clazz { public void doSomething() { ... check(); } public void doSomethingElse() { ... check(); } ... // etc.,these methods look basically the same - they all call check() at the end }
解决方法
是的 – 有可能.您需要检测代码,通常使用方面(AOP).如果你想看看它的样子,请查看
this example.