首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

获得对象的属性类型

2012-10-16 
取得对象的属性类型例如:A target new A()String type target.getClass().getDeclaredField(属性1)

取得对象的属性类型
例如:

A target = new A();String type = target.getClass().getDeclaredField("属性1").getGenericType().toString();

PS:返回的type为"java.lang.String"

热点排行