有个类是这么定义的,
public class ClassInfo{
    
    private List<Person> personList;    // some other propertyies      
   
    // getter and setter
    
}
public class Person{    private Integer id;
    private String name;    // getter and setter
}请问我怎么样通过反射
取得 ClassInfor 类中 personList属性的List中定义的元素类型Person类?  谢谢了