通过键盘录入数据为学生对象赋值。 将学生对象添加到集合中,并遍历集合。 import java.util.ArrayList; import java.util.Scanner; public class ArrayListTest { public static void main(String[] args ) { // 创建集合对象 ArrayList list = new ___________ ; // 调用方法,往集合中添加学生对象 addStudent ( list ); addStudent ( list ); addStudent ( list ); // 遍历集合 for ( int i = 0; i < list.size() ; i ++) { Student s = ___________ ; System. out .println( s .getName() + " : " + s .getAge()); } } public static void addStudent( ___________ list ) { // 键盘录入学生对象所需要的数据 Scanner sc = new Scanner(System. in ); System. out .println( " 请输入学生姓名 :" ); String name = sc .nextLine(); System. out .println( " 请输入学生年龄 :" ); int age = sc .nextInt(); // 创建学生对象,并设置成员变量的值。 Student s = new ___________ ; s .setName( name ); s .setAge( age ); // 往集合中添加学生对象 ___________ ; } }