java.lang.Package.getAnnotations()方法範例


java.lang.Package.getAnnotations() 方法返回當前這個元素上的所有注釋。 (如果這個元素沒有注釋返回長度為零的陣列。)該方法的呼叫者可以隨意修改返回陣列;這對其他呼叫者返回的陣列產生任何影響。

宣告

以下是java.lang.Package.getAnnotations()方法的宣告

public Annotation[] getAnnotations()

引數

  • NA

返回值

此方法返回當前這個元素上的所有注釋

異常

  • NA

例子

下面的例子顯示lang.Object.getAnnotations()方法的使用。

package com.yiibai;

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.getAnnotations();

         // 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.yiibai.Demo(str=Demo Annotation, val=100)