转:

java.lang.reflect.Method.getAnnotation()方法示例

作者: 初生不惑 Java技术QQ群:227270512 / Linux QQ群:479429477
 

java.lang.reflect.Method.getAnnotation(Class <T> annotationClass)方法如果存在这样的注释,则返回指定类型的元素的注释,否则为null

声明

以下是java.lang.reflect.Method.getAnnotation(Class <T> annotationClass)方法的声明。

public <T extends Annotation> T getAnnotation(Class<T> annotationClass)
Java

参数

  • annotationClass - Class对象对相应的注释类型。

返回值

  • 如果存在于此元素,则返回该元素注释指定的注释类型,否则返回为null

异常

  • NullPointerException - 如果给定的注释类为空。

以下示例显示java.lang.reflect.Method.getAnnotation(Class<T> annotationClass)方法的用法。

import java.lang.annotation.Annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.reflect.Method; public class MethodDemo {
public static void main(String[] args) {
Method[] methods = SampleClass.class.getMethods(); Annotation annotation = methods[0].getAnnotation(CustomAnnotation.class);
if(annotation instanceof CustomAnnotation){
CustomAnnotation customAnnotation = (CustomAnnotation) annotation;
System.out.println("name: " + customAnnotation.name());
System.out.println("value: " + customAnnotation.value());
}
}
} @CustomAnnotation(name="SampleClass", value = "Sample Class Annotation")
class SampleClass {
private String sampleField; @CustomAnnotation(name="getSampleMethod", value = "Sample Method Annotation")
public String getSampleField() {
return sampleField;
} public void setSampleField(String sampleField) {
this.sampleField = sampleField;
}
} @Retention(RetentionPolicy.RUNTIME)
@interface CustomAnnotation {
public String name();
public String value();
}
Java

让我们编译并运行上面的程序,这将产生以下结果 -

name: getSampleMethod
value: Sample Method Annotation

原文出自【易百教程】,商业转载请联系作者获得授权,非商业转载请保留原文链接:https://www.yiibai.com/javareflect/javareflect_method_getannotation.html

最新文章

  1. PHP缓存机制Output Control详解
  2. ajax浅析---ScriptManagerProxy
  3. ANSI_NULLS、QUOTED_IDENTIFIER
  4. docker sonaqube
  5. 在Adobe AIR/AS 程序中 如何设置目录
  6. 【CITE】5个最优秀的Java和C#代码转换工具
  7. 将Xml或Json生成类的最简单方式
  8. Win7中修改Chrome浏览器缓存文件目录
  9. linux下不重启加硬盘
  10. hdoj 3062 Party(2-SAT)
  11. 用浅/深拷贝、和HTML5方法解决js对象的引用的问题
  12. Protobuf动态解析在Java中的应用 包含例子程序
  13. Mysql元数据生成Hive建表语句注释脚本
  14. XMind入门教程
  15. mongoDB操作详细
  16. 后台List里的数据传到前台表格和下拉列表为什么不显示
  17. 天然气管道Gaz[POI2007]
  18. iOS UITextfield只允许输入数字和字母,长度限制
  19. Linux安装配置apache
  20. EDA优势

热门文章

  1. Javascript节点选择
  2. 第2章 python入门
  3. git 账号密码
  4. 01 js数据类型
  5. jsp下拉列表
  6. Web SQL与indexedDB
  7. zencart价格筛选插件
  8. C# 继承(3)持续更新
  9. [唐胡璐]Selenium技巧- IEDriverServer在进程中没有关闭?
  10. hybird(h5)页面自动化测试