解决方法
您不能直接向Class对象添加新字段.您可以使用第三方API来进行类生成或修改(例如ASM,bcel),尽管它们最好避免使用,因为它们会增加很多复杂性.
至于问题的第二部分,您可以使用Class对象浏览字段并检查它们.
// NOTE : this only looks at the fields in A and not it's superclass. // you'll have to do a recursive lookup if you want super's fields too. for(Field field : A.class.getDeclaredFields()) { if(B.class.equals(field.getType()) { System.out.println("A." + field.getName() + " is of type B"); } }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。