题目描述
1.编写Father类,包含初始化块,静态初始化块,构造方法,show方法; 包含name成员变量
2.编写Son类,继承Father类,包含初始化块,静态初始化块,构造方法,show方法; 包含name成员变量
Main类已经编写好。
import java.util.*;
public class Main
{
public static void main(String[] args)
{
Scanner r = new Scanner(System.in);
String name1 = r.next();
String name2 = r.next();
Son obj1 = new Son(name1);
Son obj2 = new Son(name2);
obj1.show();
obj2.show();
}
}
样例输入
son1 son2
样例输出
The Static Initial Block of Father Class The Static Initial Block of Son Class The Initial Block of Father Class Father() Constructor The Initial Block of Son Class Son(String name) Constructor The Initial Block of Father Class Father() Constructor The Initial Block of Son Class Son(String name) Constructor this.name = son1 this.name =



