-3

我知道当我创建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);
    }
}
4

1 回答 1

2

我知道当我创建了 Children 对象时,同时会创建一个 Parent 对象,有什么方法可以获取 Parent 对象

仅创建一个子对象,它具有父对象和子对象本身的属性。

于 2013-08-17T10:19:59.573 回答