我知道当我创建Children
对象时,同时会创建一个Parent
对象,有没有办法获取Parent
对象
public class Parent {
private String name;
private int age;
public Parent(){
System.out.println(this);
}
public static void main(String[] args) {
Children c = new Children();
}
}
class Children extends Parent{
private String toy;
public Children(){
System.out.println(this);
}
}
答案 0 :(得分:2)
我知道当我创建Children对象时,同时也是父对象 对象将被创建,有没有办法获取Parent对象
仅创建一个子对象,该对象具有父对子和子对象的属性。