15.学生管理系统之添加学生

学生管理系统之添加学生功能

//添加学生
    public static void addStudent(ArrayList array) {
        //创建键盘录入对象 
        Scanner sc = new Scanner(System.in);
        
        System.out.println("请输入学生学号");
        String id = sc.nextLine();
        System.out.println("请输入学生姓名");
        String name = sc.nextLine();
        System.out.println("请输入学生年龄");
        String age = sc.nextLine();
        System.out.println("请输入学生居住地");
        String address = sc.nextLine();
        
        //创建学生对象
        Student s = new Student();
        s.setId(id);
        s.setName(name);
        s.setAge(age);
        s.setAddress(address);
        
        //把学生对象作为元素添加到集合
        array.add(s);
        
        //给出提示
        System.out.println("添加学生成功");
    }

你可能感兴趣的:(15.学生管理系统之添加学生)