我想在类层次结构中使用@customannotation访问所有字段。
班级结构如下:
Class A{
private Arraylist<B> b;
.
.
}
Class B{
@customannotation
private C c;
.
.
}
Class C{
@customannotation
private String c;
.
.
}
我尝试了class.getDeclaredClasses()但它返回了0个类。请帮助我进行递归解析,以在类层次结构中查找@customannotation的所有字段。