- package cn.learn.test;
- public class Test {
- public static void main(String[] args) {
- Student s = new Student();
- }
- }
- class Person{
- Person(){
- System.out.println("调用父类的构造方法!");
- }
- }
- class Student extends Person{
- Student(){
- System.out.println("调用子类的构造方法!");
- }
- }
复制代码 为什么我的main方法里之创建了学生类,但打印结果为甚打印了
调用父类的构造方法!
调用子类的构造方法!
|