欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

类继承时构造方法

程序员文章站 2022-05-14 12:03:42
...
class Person {
	String name = "No name";

	public Person(String nm) {
		name = nm;
	}
}

public class Employee extends Person {
	String empID = "0000";

	public Employee(String id) {
		//super(id);
		empID = id;
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		Employee e = new Employee("0001");
		System.out.println(e.empID);
	}

}

 

子类中的构造方法中的super(id),是不能省略的,因为父类中没有默认的空参数的构造方法,这里必须显性的引用。