本帖最后由 雪碧拌米饭 于 2014-4-23 09:01 编辑
@Deprecated
public class AnnotationTest {
/**
* @param args
*/
@SuppressWarnings("deprecation")
public static void main(String[] args){
System.runFinalizersOnExit(true);
if(AnnotationTest.class.isAnnotationPresent(Deprecated.class)){
Deprecated annocation = (Deprecated)Deprecated.class.getAnnotation(Deprecated.class);
System.out.println(annocation);
}
}
|
|