我有一些看起来像的代码:
public class Custom {
private int a = 0;
private int b = 0;
public void doSomething() { ... }
public void setA(int a) { this.a = a; doSomething(); }
public void setB(int b) { this.b = b; doSomething(); }
}
这种模式对我来说很常见,并且发生在我的一些课程中。有没有办法使用Java的注释系统来创建类似的东西:
public class Custom {
@Callback(method=doSomething)
private int a = 0;
@Callback(method=doSomething)
private int b = 0;
private void doSomething() { ... }
}