Java Constructor getParameterAnnotations()方法

java.lang.reflect.Constructor.getParameterAnnotations()方法返回一个数组的数组,它们表示由Constructor对象表示的方法的形式参数(以声明顺序)的注释。 (如果底层方法是无参数的,则返回一个长度为零的数组,如果该方法具有一个或多个参数,则对于每个没有注释的参数,返回长度为零的嵌套数组)。返回的数组中包含的注释对象是可序列化的。 该方法的调用者可以自由修改返回的数组; 它将对返回给其他调用者的数组没有影响。

1 语法

public Annotation[][] getParameterAnnotations()

2 参数

3 返回值

底层声明的数组。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Constructor getParameterAnnotations()方法
 */
import java.lang.reflect.Constructor;

public class GetName {

   public static void main(String[] args) {
      Constructor[] constructors = SampleClass.class.getDeclaredConstructors();
      for (Constructor constructor : constructors) {
         System.out.println("Constructor: " + constructor.getName());
      }
   }
}

class SampleClass {
   private String sampleField;

   public SampleClass() throws ArrayIndexOutOfBoundsException {
   }

   private SampleClass(String sampleField){
      this.sampleField = sampleField;
   }

   public String getSampleField() {
      return sampleField;
   }

   public void setSampleField(String sampleField) {
      this.sampleField = sampleField; 
   } 
}

输出结果为:

F:\worksp\javareflect>java GetParameterAnnotations
name: sampleClassConstructor
value: Sample Constructor Annotation

 

热门文章

优秀文章