當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Field getDeclaredAnnotations()用法及代碼示例


java.lang.reflect.Field的getDeclaredAnnotations()方法用於返回直接存在於此Field對象上的注釋,並忽略繼承的注釋。如果此元素上沒有直接存在的注釋,則返回值為空數組。調用者可以將返回的數組修改為方法發送的實際對象的副本;它對返回給其他調用方的數組沒有影響。

用法:

public Annotation[] getDeclaredAnnotations()

參數:此方法接受不接受任何內容。


返回:此方法返回直接存在於此元素上的注釋。

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

// Java program to illustrate 
// getDeclaredAnnotations() method 
  
import java.lang.annotation.*; 
import java.lang.reflect.Field; 
import java.util.Arrays; 
  
public class GFG { 
  
    // initialize field with  annotation 
    private int @SpecialNumber[] number; 
  
    public static void main(String[] args) 
        throws NoSuchFieldException 
    { 
        // get Field object 
        Field field 
            = GFG.class.getDeclaredField("number"); 
  
        // apply getAnnotatedType() method 
        Annotation[] annotations 
            = field.getDeclaredAnnotations(); 
  
        // print the results 
        System.out.println( 
            Arrays 
                .toString(annotations)); 
    } 
  
    @Target({ ElementType.TYPE_USE }) 
    @Retention(RetentionPolicy.RUNTIME) 
    private @interface SpecialNumber { 
    } 
}
輸出:
[]

示例2:

// Java program to illustrate 
// getDeclaredAnnotations() method 
  
import java.lang.annotation.Annotation; 
import java.lang.reflect.Field; 
import java.util.Arrays; 
  
public class GFG { 
  
    // initialize field with  annotation 
    @Deprecated
    private String string 
        = " Welcome to GeeksForGeeks"; 
  
    public static void main(String[] args) 
        throws NoSuchFieldException 
    { 
  
        // create Field object 
        Field field 
            = GFG.class
                  .getDeclaredField("string"); 
  
        // apply getAnnotation() 
        Annotation[] annotations 
            = field.getDeclaredAnnotations(); 
  
        // print results 
        System.out.println( 
            Arrays 
                .toString(annotations)); 
    } 
}
輸出:
[@java.lang.Deprecated()]

參考文獻: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#getDeclaredAnnotations–



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Field getDeclaredAnnotations() method in Java With Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。