java.lang.reflect.Constructor.getParameterAnnotations() 方法示例



说明

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

声明

以下是 java.lang.reflect.Constructor.getParameterAnnotations() 方法的声明。

public Annotation[][] getParameterAnnotations()

返回

底层成员的简单名称。

示例

以下示例展示了 Java.lang.reflect.Constructor.getParameterAnnotations() 方法的使用。

Live Demo
package com.tutorialspoint;

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

public class ConstructorDemo {
   public static void main(String[] args) {

      Constructor[] constructors = SampleClass.class.getConstructors();
      Annotation[][] annotations = constructors[1].getParameterAnnotations();
      for(Annotation[] annotation1 : annotations){
         for(Annotation annotation : annotation1){
            if(annotation instanceof CustomAnnotation){
               CustomAnnotation customAnnotation = (CustomAnnotation) annotation;
               System.out.println("name: " + customAnnotation.name());
               System.out.println("value: " + customAnnotation.value());
            }
         }
      }
   }
}

@CustomAnnotation(name = "SampleClass",  value = "Sample Class Annotation")
class SampleClass {
   private String sampleField;

   
   public SampleClass(){
   }

   public SampleClass(@CustomAnnotation(name="sampleClassConstructor",  
      value = "Sample Constructor Annotation") String sampleField){
      this.sampleField = sampleField;
   }

   public String getSampleField() {
      return sampleField;
   }

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

@Retention(RetentionPolicy.RUNTIME)
@interface CustomAnnotation {
   public String name();
   public String value();
}

让我们编译并运行以上程序,它将产生以下结果 -

name: sampleClassConstructor
value: Sample Constructor Annotation
java_reflect_constructor.htm
广告