广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州Java注释反射是什么?_北大青鸟IT计算机学校

作者:邓华发布时间:2021-03-29分类:Java技术浏览:905


导读:Java注释反射是什么?相信这是每个学习Java的同学都会遇到的问题,下面我们一起来看看惠州北大青鸟老师是怎么回答的。

Java注释反射是什么?相信这是每个学习Java的同学都会遇到的问题,下面我们一起来看看惠州北大青鸟老师是怎么回答的。

您可以获取具有与某个关联的RUNTIME保留的所有注释项目,通过调用该项目的getAnnotations()。

它有这种一般形式:

Annotation[ ] getAnnotations( )

以下代码显示了如何从类中获取注释。

import java.lang.annotation.Annotation;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.reflect.Method;

@Retention(RetentionPolicy.RUNTIME)
@interface MyAnno {
 String str();  int val();
}

@Retention(RetentionPolicy.RUNTIME)
@interface What {
 String description();
}

@What(description = "An annotation")
@MyAnno(str = "Meta2", val = 99)public class Main {
 @What(description = "test method")
 @MyAnno(str = "Testing", val = 100)  public static void myMeth() throws Exception {
   Main ob = new Main();
   Annotation annos[] = ob.getClass().getAnnotations();
   System.out.println("All annotations for Meta2:");    for (Annotation a : annos) {
     System.out.println(a);
   }
   Method m = ob.getClass().getMethod("myMeth");
   annos = m.getAnnotations();    for (Annotation a : annos) {
     System.out.println(a);
   }

 }  public static void main(String args[]) throws Exception {
   myMeth();
 }
}

上面的代码生成以下结果。

Java注释反射.png

想了解更多关于Java的资讯吗?可以来惠州北大青鸟新方舟校区了解一下。

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表