标签:java 编程导论 retentionpolicy.runt
(本文是介绍依赖注入容器Spring和分析JUnit源代码的准备知识)
java.lang.annotation.Annotation是所有Java标注的父接口,它除了override/改写Object的equals(Object)、hashCode()和toString()外,仅有一个方法
Class<? extends Annotation> annotationType()
返回本标注的的类型。@Target(value=METHOD) @Retention(value=SOURCE) public @interface Override{}再如java.lang. FunctionalInterface。
@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface FunctionalInterface ......这些例子反映标注的一些基本内容:
@Target说明被修饰的标注的适用场合/目标。其值由枚举java.lang.annotation.ElementType限定,包括ANNOTATION_TYPE , CONSTRUCTOR , FIELD , LOCAL_VARIABLE , METHOD ,PACKAGE , PARAMETER , TYPE和TYPE_PARAMETER。例如Target自己的适用场合是@Target(value=ANNOTATION_TYPE);如果标注只有单一属性成员(名值对),而并成员名为"value="可以省略为@Target(ANNOTATION_TYPE)。
@Retention说明被修饰的标注的保留策略,由RetentionPolicy枚举。
org.junit.Test
org.junit.Ignore @Target({ElementType.METHOD, ElementType.TYPE})
@Before和@After标示的方法只能各有一个,取代了JUnit以前版本中的setUp和tearDown方法
org.junit.BeforeClass @Target(ElementType.METHOD)
org.junit.Before @Target(ElementType.METHOD)
org.junit.AfterClass @Target(ElementType.METHOD)
org.junit.After @Target(ElementType.METHOD)
org.junit.runner.RunWith
org.junit.runners.Suite.SuiteClasses
org.junit.runners.Parameterized.Parameters
package MyTest; import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface MyAnnotation{ String value(); }②标注的使用类
package MyTest; public class HelloWorld { @MyAnnotation("Test") public double add(double m,double n){ return m+n; } @MyAnnotation("Ignore") public double add2(double m,double n){ return m+n; } }
package MyTest; import java.lang.annotation.*; import java.lang.reflect.*; public class TestHelloWorld{ public static void main(String[] args)throws Exception{ //直接使用反射机制 Class<?> c = MyTest.HelloWorld.class; HelloWorld h =(HelloWorld)c.newInstance(); Method[] methods = c.getMethods(); for(Method method:methods){ Annotation[] annotations = method.getDeclaredAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("value: " + myAnnotation.value()); if(myAnnotation.value().equals("Test") ){ double d = (Double)method.invoke(h,1,2.0); System.out.println(d); } } } } } }输出:
标签:java 编程导论 retentionpolicy.runt
原文地址:http://blog.csdn.net/yqj2065/article/details/39830561