类继承时构造方法
程序员文章站
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),是不能省略的,因为父类中没有默认的空参数的构造方法,这里必须显性的引用。
上一篇: 用PHP和ACCESS写聊天室(六)
下一篇: php连mysql,并取数据。