The Introspector class provides a standard way for tools to learn about the properties, events, and methods supported by a target Java Bean.
BeanInfo
Use the BeanInfo interface to create a BeanInfo class and provide explicit information about the methods, properties, events, and other features of your beans.
age public int Cat.getAge() public void Cat.setAge(int) child/*代码没有定义字段,但是却有这个字段,这个字段是被isChild方法带来的*/ public boolean Cat.isChild() null class/*class类是继承自Object类的属性getClass方法带来的*/ public final native java.lang.Class java.lang.Object.getClass() null health public boolean Cat.isHealth() public void Cat.setHealth(boolean) name public java.lang.String Cat.getName() public void Cat.setName(java.lang.String)