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


Java Java.lang.Class.getDeclaredField()用法及代碼示例



描述

這個java.lang.Class.getDeclaredField() 方法返回一個 Field 對象,該對象反映了此 Class 對象表示的類或接口的指定聲明字段。這name參數是一個字符串,用於指定所需字段的簡單名稱。

聲明

以下是聲明java.lang.Class.getDeclaredField()方法

public Field getDeclaredField(String name) throws NoSuchFieldException, SecurityException

參數

name- 這是字段的名稱。

返回值

此方法返回此類中指定字段的 Field 對象。

異常

  • NoSuchFieldException− 如果未找到具有指定名稱的字段。

  • NullPointerException− 如果名稱為空。

  • SecurityException− 如果存在安全管理器 s。

示例

下麵的例子展示了 java.lang.Class.getDeclaredField() 方法的用法。

package com.tutorialspoint;

import java.lang.reflect.*;

public class ClassDemo {

   public static void main(String[] args) {

     try {            
         ClassDemo c = new ClassDemo();
         Class cls = c.getClass();

         // field long l
         Field lVal  = cls.getDeclaredField("l");
         System.out.println("Field = " + lVal.toString());
      } catch(Exception e) {
         System.out.println(e.toString());
      }
   }

   public ClassDemo() {
      // no argument constructor
   }

   public ClassDemo(long l) {
      this.l = l;
   }

   long l = 77688;
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Field = long com.tutorialspoint.ClassDemo.l

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Class.getDeclaredField() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。