看到lz的问题我写了段代码测试
import java.lang.annotation.Annotation;
public class Test {
public static void main(String[] args) {
try {
Annotation[] annotations = MyClass.class.getMethod("toString", null).getAnnotations();
for(Annotation annotation : annotations){
System.out.println("hehe");
System.out.println(annotation.toString());
}
} catch (Exception e) {
System.out.println("woca");
}
}
}
class MyClass
{
@Override
public String toString() {
return "haha";
}
}
但是结果毛都没输出出来。。。
我晕忽忽的,求高手指点。 |