public Person(){ //初始化 name="李斯"; age=45; } public Person(String name,int age){ this.name=name; this.age=age; }