Java getDeclaredAnnotations() 方法



描述

Java Package getDeclaredAnnotations() 方法返回直接存在于此元素上的所有注释。与该接口中的其他方法不同,此方法忽略继承的注释。(如果此元素上没有直接存在注释,则返回长度为零的数组。)此方法的调用者可以自由修改返回的数组;这不会影响返回给其他调用者的数组。

声明

以下是 java.lang.Package.getDeclaredAnnotations() 方法的声明

public Annotation[] getDeclaredAnnotations()

参数

返回值

此方法返回直接存在于此元素上的所有注释

异常

<

获取所有注释示例

以下示例显示了 getDeclaredAnnotations() 方法的用法。在此程序中,我们已将注释 Demo 声明为一个接口,其中包含一个返回字符串的方法和另一个返回整数值的方法。在 PackageDemo 类中,我们已将该注释 Demo 应用于方法 example(),并带有一些值。在 example() 方法中,我们已使用 getClass() 方法检索了 PackageDemo 类的类。

现在使用 getMethod() 示例,我们检索了 example 方法实例,然后使用 getDeclaredAnnotations() 方法,我们检索了注释数组并打印了它们。在主方法中,调用此 example() 方法并打印结果。

package com.tutorialspoint;

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

// declare a new annotation
@Retention(RetentionPolicy.RUNTIME)
@interface Demo {
   String str();
   int val();
}

public class PackageDemo {

   // set values for the annotation
   @Demo(str = "Demo Annotation", val = 100)
   
   // a method to call in the main
   public static void example() {
      PackageDemo ob = new PackageDemo();

      try {
         Class c = ob.getClass();

         // get the method example
         Method m = c.getMethod("example");

         // get the annotations
         Annotation[] annotation = m.getDeclaredAnnotations();

         // print the annotation
         for (int i = 0; i < annotation.length; i++) {
            System.out.println(annotation[i]);
         }
      } catch (NoSuchMethodException exc) {
         exc.printStackTrace();
      }
   }
   public static void main(String args[]) {
      example();
   }
}

输出

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

@com.tutorialspoint.Demo(str=Demo Annotation, val=100)

获取空注释数组示例

以下示例显示了 getDeclaredAnnotations() 方法的用法。在此程序中,我们已将注释 Demo 声明为一个接口,其中包含一个返回字符串的方法和另一个返回整数值的方法。在 PackageDemo 类中,我们已将该注释 Demo 应用于方法 example(),并带有一些值。在 example() 方法中,我们已使用 getClass() 方法检索了 PackageDemo 类的类。我们创建了另一个没有应用任何注释的方法 example1()。

现在使用 getMethod() 示例,我们检索了 example1 方法实例,然后使用 getDeclaredAnnotations() 方法,我们检索了注释数组并打印了它们。由于没有应用任何注释,因此数组将为空。在主方法中,调用此 example() 方法并打印结果。

package com.tutorialspoint;

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

// declare a new annotation
@Retention(RetentionPolicy.RUNTIME)
@interface Demo {
   String str();
   int val();
}

public class PackageDemo {

   // set values for the annotation
   @Demo(str = "Demo Annotation", val = 100)
   
   // a method to call in the main
   public static void example() {
      PackageDemo ob = new PackageDemo();

      try {
         Class c = ob.getClass();

         // get the method example
         Method m = c.getMethod("example1");

         // get the annotations
         Annotation[] annotation = m.getDeclaredAnnotations();

         if(annotation.length != 0) {
            // print the annotation
            for (int i = 0; i < annotation.length; i++) {
               System.out.println(annotation[i]);
            }
         }else {
            System.out.println("No annotations present.");
         }
      } catch (NoSuchMethodException exc) {
         exc.printStackTrace();
      }
   }
   public static void main(String args[]) {
      example();
   }
   public static void example1() {
      // method with no annotations
   }
}

输出

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

No annotations present.
java_lang_package.htm
广告