参见英文答案 >
Java: Creating a subclass object from a parent object10个
在给父母提供数据的情况下,创建孩子的最佳方法是哪种?
是否可以在子类上使用包含所有父值的方法:
在给父母提供数据的情况下,创建孩子的最佳方法是哪种?
是否可以在子类上使用包含所有父值的方法:
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);