class Test {
public static void main(String[] args) {
// 获得无参构造器的 Teacher 类对象 t 和 Student 类对象 s
Teacher t = new Teacher();
Student s = new Student();
// 获得另外的 Teacher 对象 t1
Teacher t1 = new Teacher("张老师", 40, "数学");
// 获得 2 位 Student 对象 s1 和 s2
Student s1 = new Student("小明", 20, "计算机科学");
Student s2 = new Student("小红", 21, "计算机科学");
// 打印输出对象信息,每行一人
System.out.println(t1.getInfo());
System.out.println(s1.getInfo());
System.out.println(s2.getInfo());
}
}
注意:上面的代码假设 Teacher 类和 Student 类都有 getInfo() 方法,用于获取对象的信息。