public void testModify(){ System.out.println("请输入要修改的学生ID:"); //创建一个Scanner对象,去获取从键盘上输入的学生ID字符串 Scanner consle=new Scanner(System.in); while(true){ String stuID=Console.next(); student student =students.get(stuID); if(student==null){ System.out.println(); continue; } System.out.println("当前该学生ID,所对应的学生为:"+student.name); String name = Console.next(); student newStudent = new student(stuID,name); } }这个代码中的console.next()方法一直报错,问题出在哪里?(JAVA基础第三季,5.4节)
添加回答
举报
0/150
提交
取消