public class Person{
private String name;
public Person(String name){
this.name = name;
}
}
public class Employee extends Person{
public Employee(String name){
super(name);
}
}
public class EmployeeTest{
public static void main(String[] args){
Employee e = new Employee("briup");
}
}
在这里Employee类继承Person类,
在EmployeeTest类的main方法中,new一个Employee对象,
那么Employee类中构造器中的super(name)操作有没有创建Person对象,如果没有创建,那么在Person类中的
name变量在内存中以什么形式存放?
谢谢!
问题补充:
我重点想问的是name属性在内存中是如何存放的,谢谢