Java - 获取extender(子)属性

时间:2012-03-14 02:02:30

标签: java oop

我可以在父类中获取子属性吗?我在PHP5 OOP中看到,在父类中获取子属性是可能的,但在Java中,我不知道。

1 个答案:

答案 0 :(得分:0)

如果您想要子类look here

然后您可以使用Reflection来获取每个子类的字段和方法:

for(Class c : subclasses) {
  for(Field f : c.getFields())
    // Do stuff with the fields
  for(Method m : c.getMethods())
    // Do stuff with the methods
}

您可以查看Java API entry on Class了解详情。