Java Class getDeclaredFields()方法

java.lang.Class.getDeclaredFields() 方法返回Field对象的数组,包括公共,保护,默认(包)访问和私有字段,但不包括继承的字段。该方法返回一个长度为0的数组,如果类或接口不声明任何字段,或者此Class对象表示一个基本类型,数组类或void。

1 语法

public Field[] getDeclaredFields() throws SecurityException

2 参数

3 返回值

此方法返回一个代表这个类的所有声明的字段Field对象的数组。

4 示例 

package com.yiidian;

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

public class ClassDemo {

   public static void main(String[] args) {

     try {            
        ClassDemo c = new ClassDemo();
        Class cls = c.getClass();
       
        // returns the array of Field objects
        Field[] fields = cls.getDeclaredFields();
        for(int i = 0; i < fields.length; i++) {
           System.out.println("Field = " + fields[i].toString());
        }
     }
     catch(Exception e) {
        System.out.println(e.toString());
     }
   }

   public ClassDemo() {
      // no argument constructor
   }

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

   long l = 77688;
   int i = 3;
}

输出结果为:

Field = long ClassDemo.l
Field = int ClassDemo.i

 

热门文章

优秀文章