Java.lang.Class类 getAnnotation方法有什么功能呢?

Java-教程王 Java教程 发布时间:2021-09-04 21:30:13 阅读数:17430 1
下文讲述Class类中的getAnnotation方法的功能,如下所示:

getAnnotation方法的功能

java.lang.Class.getAnnotation(Class<T> annotationClass) 方法方法的功能
获取注解类型,此方法使用对象的方式返回类

getAnnotation方法的语法

语法
 public T getAnnotation(Class<T> annotationClass)
参数
  annotationClass:待获取注解的类型

返回值
  返回注解类的指定对象
例:
getAnnotation方法的示例分享
package com.java265.other;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import org.junit.Test;
import com.java.other.other.AnnotationJava265;
@AnnotationJava265(a = "java", b = "教程网")
public class other {
	/**
	 * java265.com java.lang.Class 测试示例分享
	 */
	@Test
	public void test() {
		Class c = other.class;

		System.out.println("class: " + c.toString());
		System.out.println("Annotation of myClass: " + c.getAnnotation(AnnotationJava265.class));
	}

	@Retention(RetentionPolicy.Runtime)
	@interface AnnotationJava265 {
		public String a();
		public String b();
	}
}
-------运行以上代码,将输出以下信息-----
class: class com.java.other.other
Annotation of myClass: @com.java.other.other$AnnotationJava265(a="java", b="\u6559\u7a0b\u7f51")
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/202109/1000.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者