我正在做一个春季项目,我想做注释。
我需要类似下面的描述:
@CustomAnnotation("b")
public int a(int value) {
return value;
}
public int b(int value) {
return value + 1 ;
}
--------------------------
Execute :
a(1) // should return '2'
Run Code Online (Sandbox Code Playgroud)