java反射获取类属性类型_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java反射获取类属性类型

java反射获取类属性类型

 2016/5/27 0:32:25  wangduorong  程序员俱乐部  我要评论(0)
  • 摘要:packageTest;/***通过反射获取类属性的类型*@authortest**/publicclassOtherTest{privatestaticinti=1;privatestaticStringname="wang";publicstaticvoidmain(String[]args)throwsException{System.out.println(OtherTest.class.getDeclaredField("i").getType());System.out
  • 标签:Java 反射

package Test;

?

/**

?* 通过反射获取类属性的类型

?* @author test

?*

?*/

public class OtherTest {

?

private static int i = 1;

private static String name = "wang";

?

public static void main(String[] args) throws Exception {

?

System.out.println(OtherTest.class.getDeclaredField("i").getType());

System.out.println(OtherTest.class.getDeclaredField("name").getType());??

}

}

?

另:getDeclaredField是可以获取一个类的所有字段.?getField只能获取类的public 字段.

发表评论
用户名: 匿名