以下是示例代码:
@interface MyAnnotation {
String stringValue1();
String stringValue2();
}
public class Ann{
private String requireString = "str";
@MyAnnotation(stringValue1 = "abc" , stringValue2 = "")
public String getstringValue1()
{
return (this.requireString);
}
}
在这里,我想通过“this.requireString”返回的值更新myAnnotation的stringValue2元素的值atbs到getStringValue()方法。
你能告诉我怎么做到这一点?