private void selectStu(){ Scanner scanner = new Scanner(System.in); Student stu = new Student(); System.out.println("请输入学号"); stu.id = scanner.nextLong(); for(int i=0; i<arrayList.size(); i++){ if(arrayList.get(i).id==stu.id){ System.out.println("学号:"+arrayList.get(i).id+"\n姓名:"+arrayList.get(i).name); break; } else{ System.out.println("该学生不存在"); } } }
时间: 2024-04-26 18:22:18 浏览: 51
这是一个Java类中的一个方法,该方法名为selectStu,其访问修饰符为private,意味着该方法只能在当前类中被访问。该方法通过Scanner类从控制台输入要查询的学生的学号,并遍历ArrayList容器中的元素,找到与输入学号相同的学生信息。如果找到了对应的学生信息,则输出该学生的学号和姓名;如果没有找到对应的学生信息,则输出提示信息"该学生不存在"。该方法的作用是从ArrayList容器中根据学号查询学生信息。
相关问题
private void deleteStu(){ Scanner scanner = new Scanner(System.in); Student stu = new Student(); System.out.println("请输入学号"); stu.id = scanner.nextLong(); for(int i=0; i<arrayList.size(); i++){ if(arrayList.get(i).id == stu.id){ arrayList.remove(i); break; } else{ System.out.println("该学生不存在"); } } }
这是一个Java类中的一个方法,该方法名为deleteStu,其访问修饰符为private,意味着该方法只能在当前类中被访问。该方法通过Scanner类从控制台输入要删除的学生的学号,并遍历ArrayList容器中的元素,找到与输入学号相同的学生信息。如果找到了对应的学生信息,则通过ArrayList容器的remove方法将该学生信息从容器中删除;如果没有找到对应的学生信息,则输出提示信息"该学生不存在"。该方法的作用是从ArrayList容器中根据学号删除学生信息。
private void updateStu(){ Scanner scanner = new Scanner(System.in); Student stu = new Student(); System.out.println("请输入学号"); stu.id = scanner.nextLong(); for(int i=0; i<arrayList.size(); i++){ if(arrayList.get(i).id == stu.id){ System.out.println("请输入修改后的学号:"); arrayList.get(i).id = scanner.nextLong(); System.out.println("请输入修改后的姓名:"); arrayList.get(i).name = scanner.next(); break; } else{ System.out.println("该学生不存在"); } }
这是一个Java类中的一个方法,该方法名为updateStu,其访问修饰符为private,意味着该方法只能在当前类中被访问。该方法通过Scanner类从控制台输入要修改的学生的学号,并遍历ArrayList容器中的元素,找到与输入学号相同的学生信息。如果找到了对应的学生信息,则通过Scanner类输入修改后的学号和姓名,并将其更新到ArrayList容器中相应的元素中;如果没有找到对应的学生信息,则输出提示信息"该学生不存在"。该方法的作用是从ArrayList容器中根据学号更新学生信息。
阅读全文