package system; import static system.main.sc; import static system.main.students; import java.util.ArrayList; import java.util.Scanner; public class add { static void add(){ //增加学生信息 Scanner sc = new Scanner(System.in); System.out.print("请输入科目:"); String str4 = sc.next(); System.out.print("请输入您要添加学生的个数:"); int s = sc.nextInt(); //添加学生个数 String number = null; while (true){ System.out.print("请输入您要添加的学号:"); String str = sc.next(); boolean flag =contains(students.number); if(flag){ System.out.print("该学号已录入"); } else{ student.setNumber() } // for (int i = 0; i < s; i++) { // System.out.print("请输入您要添加的学号:"); // String str = sc.next(); // int count = 0; //计数 // for (final Student student : students.size()){ // // } // if (student.getNumber().equals(str)) { //运用了一个string的方法equals(),如果有相同的学号,就是已有此人 // System.out.println("该学生已存在"); // break; // } // count++; // } //for循环遍历每一个学生对象,是否在students中有重复的学号,就不添加,下一个 String name = ("姓名:"); String sex = ("性别:"); String college = ("学院:"); String score = ("成绩:"); if (count == students.size()){ System.out.print(name); String str1 = sc.next(); System.out.print(sex); String str2 = sc.next(); System.out.print(college); String str3 = sc.next(); System.out.print(score); int num = sc.nextInt(); //接收学生信息 Student student = new Student(str,str1,str2,str3,str4,num); students.add(student); //添加学生对象 System.out.println("已成功录入"); } } }这段代码有什么问题
时间: 2024-03-04 20:51:03 浏览: 64
这段代码中存在一些问题:
1. 在 while 循环中,没有退出条件,会导致程序无限循环。
2. 在 while 循环中,没有对 number 变量进行赋值,导致后面的代码无法编译通过。
3. 在 contains 方法中,没有传入参数,不知道要查找的内容是什么。
4. 在 student.setNumber() 方法中,没有传入要设置的学号,也无法编译通过。
5. 在接收学生信息时,没有对输入的数据进行验证,容易出现输入错误的情况。
需要进行修改和完善。
阅读全文