热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Java中的类getAnnotations()方法,带示例

Java中的类getAnnotations()方法,带示例原

Java 中的类 getAnnotations()方法,带示例

原文:https://www . geesforgeks . org/class-getannocations-method-in-Java-with-examples/

java.lang.Class 类getAnnotations() 方法用于获取该类中存在的注释。方法返回存在的注释数组。

语法:

public Annotation[] getAnnotations()

参数:该方法不接受任何参数。

返回值:该方法返回一组存在的注释

下面的程序演示了 getAnnotations()方法。

例 1:

// Java program to demonstrate
// getAnnotations() method
import java.util.*;
import java.lang.annotation.*;
@Deprecated
public class Test {
    public Object obj;
    public static void main(String[] args)
        throws ClassNotFoundException
    {
        try {
            // returns the Class object for this class
            Class myClass = Test.class;
            System.out.println(
                "Class represented by myClass: "
                + myClass.toString());
            // Get the annotation
            // using getAnnotations() method
            System.out.println(
                "Annotation of myClass: "
                + Arrays.toString(
                      myClass.getAnnotations()));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}

输出:

Class represented by myClass: class Test
Annotation of myClass: [@java.lang.Deprecated()]

例 2:

// Java program to demonstrate
// getAnnotations() method
import java.util.*;
import java.lang.annotation.*;
// create a custom Annotation
@Retention(RetentionPolicy.RUNTIME)
@interface Annotation {
    // This annotation has two attributes.
    public String key();
    public String value();
}
// call Annotation for method
// and pass values for annotation
@Annotation(key = "GFG", value = "GeeksForGeeks")
public class Test {
    public Object obj;
    public static void main(String[] args)
        throws ClassNotFoundException
    {
        // returns the Class object for this class
        Class myClass = Test.class;
        System.out.println(
            "Class represented by myClass: "
            + myClass.toString());
        // Get the annotation
        // using getAnnotations() method
        System.out.println(
            "Annotation of myClass: "
            + Arrays.toString(
                  myClass.getAnnotations()));
    }
}

输出:

Class represented by myClass: class Test
Annotation of myClass: [@Annotation(key=GFG, value=GeeksForGeeks)]

参考:https://docs . Oracle . com/javase/9/docs/API/Java/lang/class . html # getAnnotations–


推荐阅读
author-avatar
乌龟考拉互受
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有