A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 刘海陆 中级黑马   /  2013-6-1 19:29  /  1089 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

能不能通过,反射拿到父类的公共字段?

2 个回复

倒序浏览
呵呵,这个问题好呀.我们拿到一个类的File字段是通过它的class字节码对吧,如果能拿到父类的字节码,应该就可以。
回复 使用道具 举报

  1. import java.lang.reflect.Field;

  2. public class Demo {

  3.         /**
  4.          * @param args
  5.          */
  6.         public static void main(String[] args) {
  7.                 // TODO Auto-generated method stub

  8.                 Class clazz = new Student().getClass();
  9.                 Field[] fld = clazz.getFields();
  10.                
  11.                 for(Field f : fld){
  12.                         System.out.println(f.toGenericString());
  13.                 }
  14. //                System.out.println(fld.length);
  15.                
  16.                 //clazz.getField(name);
  17.                
  18.         }

  19. }

  20. class Person{
  21.         public String name = "name";
  22.         public int age = 18;
  23. }

  24. class Student extends Person{
  25.         public int studentId = 0;
  26. }
复制代码
输出结果:
public int test.Student.studentId
public java.lang.String test.Person.name
public int test.Person.age

评分

参与人数 1技术分 +1 收起 理由
Sword + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马