while(true){ //提示输入要删除的学生的ID System.out.println("请输入要删除的学生ID!"); String ID=console.next(); //判断该ID是否有对应的学生对象 Student st=students.get(ID); if(st==null){ //提示输入的ID并不存在 System.out.println("该ID不存在!"); continue; } students.remove(ID); System.out.println("成功删除学生:"+st.name); break; }上面代码中,while的判断条件里放一个true是什么意思?有什么作用?
添加回答
举报
0/150
提交
取消