System.out.println("请输入学生ID:"); String ID=console.next(); //判断ID是否被占用 Student st=students.get(ID); if(st==null){ //提示输入学生姓名 System.out.println("请输入学生姓名:"); String Name=console.next(); //创建新的学生对象 Student newStudent=new Student(ID,Name); //通过调用students的put方法,添加ID映射学生对象 students.put(ID, newStudent); System.out.println("成功添加学生:"+students.get(ID).Name); i++; }
相关分类