Java Class getAnnotations() 方法



描述

Java Class getAnnotations() 方法返回此元素上存在的所有注解。如果此元素没有注解,则返回长度为零的数组。此方法的调用者可以随意修改返回的数组;这不会影响返回给其他调用者的数组。

声明

以下是java.lang.Class.getAnnotations() 方法的声明

public Annotation[] getAnnotations()

参数

返回值

此方法返回此元素上存在的所有注解。

异常

获取类注解示例

以下示例显示了 java.lang.Class.getAnnotations() 方法的用法。在这个程序中,我们创建了一个 ClassDemo 实例,然后使用 getClass() 方法检索实例的类。使用 getAnnotations(),我们检索了任何注解的数组,然后打印它们。如果不存在注解,则相应地打印一条消息。

package com.tutorialspoint;

import java.lang.annotation.Annotation;
   
public class ClassDemo {

   public static void main(String []args) {

      ClassDemo cls = new ClassDemo();
      Class c = cls.getClass();

      Annotation[] a = c.getAnnotations();
      if(a.length != 0) {
         for(Annotation val : a) {
            System.out.println(val.toString());
         }
      } else {
         System.out.println("Annotations is not present...");
      }
   }
} 

输出

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

Annotations is not present...

获取 Thread 类注解示例

以下示例显示了 java.lang.Class.getAnnotations() 方法的用法。在这个程序中,检索 Thread 类的类。使用 getAnnotations(),我们检索了任何注解的数组,然后打印它们。如果不存在注解,则相应地打印一条消息。

package com.tutorialspoint;

import java.lang.annotation.Annotation;
   
public class ClassDemo {

   public static void main(String []args) {
      Annotation[] a = Thread.class.getAnnotations();
      if(a.length != 0) {
         for(Annotation val : a) {
            System.out.println(val.toString());
         }
      } else {
         System.out.println("Annotations is not present...");
      }
   }
} 

输出

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

Annotations is not present...
java_lang_class.htm
广告