给定具有数据的父母,哪种方法是创建孩子的最佳方式?在子类上有一个包含所有父值的方法是否可以:
public class Child extends Person {
public Child(Parent p) {
this.setParentField1(p.getParentField1());
this.setParentField2(p.getParentField2());
this.setParentField3(p.getParentField3());
// other parent fields.
}
}
复制父数据ti子对象?
Child child = new Child(p);