当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Constructor getDeclaredAnnotations()用法及代码示例


java.lang.reflect.Constructor类的getDeclaredAnnotations()方法用于返回存在于此Constructor元素上的注释,作为Annotation类对象的数组。 getDeclaredAnnotations()方法将忽略此构造方法对象上的继承注释。返回的数组不能包含任何注释,如果构造函数具有nop注释,则该数组的长度可以为0。

用法:

public Annotation[] getDeclaredAnnotations()

参数:此方法不接受任何内容。


返回:此方法返回直接存在于此元素上的注释数组

以下示例程序旨在说明getDeclaredAnnotations()方法:
示例1:

// Java program to illustrate 
// getDeclaredAnnotations() method 
  
import java.lang.annotation.Annotation; 
import java.lang.reflect.Constructor; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a class object 
        Class classObj = shape.class; 
  
        // get Constructor object 
        // array from class object 
        Constructor[] cons 
            = classObj.getConstructors(); 
  
        // get array of annotations 
        Annotation[] annotations 
            = cons[0].getDeclaredAnnotations(); 
  
        // print length of annotations array 
        System.out.println("Annotation : "
                           + annotations); 
    } 
  
    @CustomAnnotation(createValues = "GFG") 
    public class shape { 
  
        @CustomAnnotation(createValues = "GFG") 
        public shape() 
        { 
        } 
    } 
  
    // create a custom annotation 
    public @interface CustomAnnotation { 
        public String createValues(); 
    } 
    }
输出:
Annotation : [Ljava.lang.annotation.Annotation;@4aa298b7

示例2:

// Java program to illustrate 
// getDeclaredAnnotations() method 
  
import java.lang.annotation.Annotation; 
import java.lang.reflect.Constructor; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
        // create a class object 
        Class classObj = String.class; 
  
        // get Constructor object 
        // array from class object 
        Constructor[] cons 
            = classObj.getConstructors(); 
  
        // get array of annotations 
        Annotation[] annotations 
            = cons[0].getDeclaredAnnotations(); 
  
        // print length of annotations array 
        System.out.println("Annotation length : "
                           + annotations.length); 
    } 
}
输出:
Annotation length : 0

参考文献: https://docs.oracle.com/javase/10/docs/api/java/lang/reflect/Constructor.html#getDeclaredAnnotations()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Constructor getDeclaredAnnotations() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。