下面小編就為大家帶來一篇Java 自訂註解及利用反射讀取註解的實例。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
一、自訂註解
元註解:
@interface註解: 定義註解介面
@Target註解: 用於約束被描述的註解的使用範圍,當被描述的註解超出使用範圍則編譯失敗。如:ElementType.METHOD,ElementType.TYPE;
@Retention 註解:用於約束被定義註解的作用範圍,作用範圍有三個:
#1、RetentionPolicy.SOURCE:作用範圍是原始碼,作用於Java檔案中,當執行javac時移除該註解。
2、RetentionPolicy.CLASS:作用範圍是二進位碼,就是存在於class檔案中,當執行Java時移除註解。
3、RetentionPolicy.RUNTIME:作用範圍為運行時,就是我們可以透過動態取得該註解。
@Documented:用於指定javadoc產生API文件時顯示該註解。
@Inherited:用來指定被描述的註解可以被其描述的類別的子類別繼承,預設情況是不能被其子類別繼承。
自訂註解介面:
package com.java.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ElementType.METHOD,ElementType.TYPE}) @Inherited @Documented @Retention(RetentionPolicy.RUNTIME) public @interface Annotation_my { String name() default "张三";//defalt 表示默认值 String say() default "hello world"; int age() default 21; }
接下來我們定義一個介面:
package com.java.annotation; @Annotation_my //使用我们刚才定义的注解 public interface Person { @Annotation_my public void name(); @Annotation_my public void say(); @Annotation_my public void age(); }
介面定義好了,我們就可以寫介面的實作類別了(介面不能實例化)
package com.java.annotation; @Annotation_my @SuppressWarnings("unused") public class Student implements Person { private String name; @Override @Annotation_my(name="流氓公子") //赋值给name 默认的为张三 //在定义注解时没有给定默认值时,在此处必须name赋初值 public void name() { } @Override @Annotation_my(say=" hello world !") public void say() { } @Override @Annotation_my(age=20) public void age() { } }
然後我們就寫一個測試類別來測試我們的註解
package com.java.annotation; import java.lang.annotation.Annotation; import java.lang.reflect.Field; import java.lang.reflect.Method; public class Text { Annotation[] annotation = null; public static void main(String[] args) throws ClassNotFoundException { new Text().getAnnotation(); } public void getAnnotation() throws ClassNotFoundException{ Class<?> stu = Class.forName("com.java.annotation.Student");//静态加载类 boolean isEmpty = stu.isAnnotationPresent(com.java.annotation.Annotation_my.class);//判断stu是不是使用了我们刚才定义的注解接口if(isEmpty){ annotation = stu.getAnnotations();//获取注解接口中的 for(Annotation a:annotation){ Annotation_my my = (Annotation_my)a;//强制转换成Annotation_my类型 System.out.println(stu+":\n"+my.name()+" say: "+my.say()+" my age: "+my.age()); } } Method[] method = stu.getMethods();// System.out.println("Method"); for(Method m:method){ boolean ismEmpty = m.isAnnotationPresent(com.java.annotation.Annotation_my.class); if(ismEmpty){ Annotation[] aa = m.getAnnotations(); for(Annotation a:aa){ Annotation_my an = (Annotation_my)a; System.out.println(m+":\n"+an.name()+" say: "+an.say()+" my age: "+an.age()); } } } //get Fields by force System.out.println("get Fileds by force !"); Field[] field = stu.getDeclaredFields(); for(Field f:field){ f.setAccessible(true); System.out.println(f.getName()); } System.out.println("get methods in interfaces !"); Class<?> interfaces[] = stu.getInterfaces(); for(Class<?> c:interfaces){ Method[] imethod = c.getMethods(); for(Method m:imethod){ System.out.println(m.getName()); } } } }
以上是實例詳解Java 自訂註解及利用反射讀取註解的詳細內容。更多資訊請關注PHP中文網其他相關文章!