转自:
Java.lang.Class类 getField()方法有什么功能呢?
下文讲述Class类中的getField()方法的功能,如下所示:
getField()方法的功能
java.lang.Class.getField()方法的功能
根据字段名称返回指定类的字段信息
注意事项:
此方法只可获取public修饰符的字段
getField()方法的语法
语法 public Field getField(String name) 参数 name:字段名称 返回值 返回Field对象
例:
getField()方法的示例分享
package com.java.other; import java.lang.reflect.Field; import org.junit.Test; public class other { /** * java265.com java.lang.Class 测试示例分享 * */ private String infoA; public String infoB; @Test public void test() { try { Field B = this.getClass().getField("infoB"); System.out.println(B); Field A = this.getClass().getField("infoA"); System.out.println(A); } catch (Exception e) { e.printStackTrace(); } } } -------运行以上代码,将输出以下信息---- public java.lang.String com.java.other.other.infoB java.lang.NoSuchFieldException: infoA