标准的Student类就不写了。太简单了。。。里边定义了一个show方法,进行姓名,年龄输出
Student类中的show方法:public void show (){
System.out.println("学生姓名:"+name+";学生年龄:"+age);
利用学生数组接收学生并进行遍历的代码
public class StudentText extends Student {
public static void main(String[] args) {
Student [] arr = new Student [5];
for (int i = 0; i < arr.length; i++) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入学生姓名和年龄");
arr[i]=new Student(sc.nextLine(),sc.nextInt());
}
for (int j = 0; j < arr.length; j++) {
arr[j].show();
}
}
}
|