在此链接http://docs.oracle.com/javase/tutorial/java/annotations/中查找注释教程
您需要做的是定义注释而不是进行某种反思。这是@Red 注释
package test;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Red {
}
以及如何使用它
public class AnyClass {
@Red
public int a = 5;
}
这是一个获取注释字段的简单测试
package test;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
public class TestClass {
/**
* @param args
*/
public static void main(String[] args) {
AnyClass anyClass = new AnyClass();
Class clasz = anyClass.getClass();
Field [] fArray = clasz.getFields();
Annotation[] anArray = clasz.getAnnotations();
for(Field f : fArray) {
System.out.println("wink" + f.getAnnotations()[0].annotationType());
}
}
}