91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么用集合ArrayList實現學生管理系統

小億
91
2023-10-25 13:06:00
欄目: 編程語言

要使用ArrayList來實現學生管理系統,首先需要定義一個Student類來表示學生對象。每個學生對象可以有學號、姓名、性別、年齡等屬性。

然后,在學生管理系統中可以進行如下操作:

  1. 添加學生:向ArrayList中添加一個學生對象。
  2. 刪除學生:從ArrayList中刪除指定學生對象。
  3. 修改學生信息:更新ArrayList中指定學生對象的屬性。
  4. 查詢學生信息:根據學號、姓名等條件在ArrayList中查找學生對象。
  5. 顯示所有學生信息:遍歷ArrayList,顯示所有學生的信息。

下面是一個簡單的示例代碼:

import java.util.ArrayList;
import java.util.Scanner;

public class StudentManagementSystem {
    private ArrayList<Student> students;

    public StudentManagementSystem() {
        students = new ArrayList<Student>();
    }

    public void addStudent(Student student) {
        students.add(student);
        System.out.println("添加學生成功!");
    }

    public void deleteStudent(String studentId) {
        for (int i = 0; i < students.size(); i++) {
            if (students.get(i).getStudentId().equals(studentId)) {
                students.remove(i);
                System.out.println("刪除學生成功!");
                return;
            }
        }
        System.out.println("找不到指定學生!");
    }

    public void updateStudent(String studentId, Student newStudent) {
        for (int i = 0; i < students.size(); i++) {
            if (students.get(i).getStudentId().equals(studentId)) {
                students.set(i, newStudent);
                System.out.println("更新學生信息成功!");
                return;
            }
        }
        System.out.println("找不到指定學生!");
    }

    public void queryStudent(String studentId) {
        for (int i = 0; i < students.size(); i++) {
            if (students.get(i).getStudentId().equals(studentId)) {
                System.out.println("學生信息如下:");
                System.out.println(students.get(i));
                return;
            }
        }
        System.out.println("找不到指定學生!");
    }

    public void displayAllStudents() {
        System.out.println("所有學生信息如下:");
        for (Student student : students) {
            System.out.println(student);
        }
    }

    public static void main(String[] args) {
        StudentManagementSystem system = new StudentManagementSystem();
        Scanner scanner = new Scanner(System.in);

        while (true) {
            System.out.println("請選擇操作:");
            System.out.println("1. 添加學生");
            System.out.println("2. 刪除學生");
            System.out.println("3. 修改學生信息");
            System.out.println("4. 查詢學生信息");
            System.out.println("5. 顯示所有學生信息");
            System.out.println("0. 退出");

            int choice = scanner.nextInt();
            scanner.nextLine(); // 讀取換行符

            switch (choice) {
                case 1:
                    System.out.println("請輸入學生學號:");
                    String studentId = scanner.nextLine();
                    System.out.println("請輸入學生姓名:");
                    String name = scanner.nextLine();
                    System.out.println("請輸入學生性別:");
                    String gender = scanner.nextLine();
                    System.out.println("請輸入學生年齡:");
                    int age = scanner.nextInt();
                    scanner.nextLine(); // 讀取換行符

                    Student newStudent = new Student(studentId, name, gender, age);
                    system.addStudent(newStudent);
                    break;
                case 2:
                    System.out.println("請輸入要刪除的學生學號:");
                    String deleteStudentId = scanner.nextLine();
                    system.deleteStudent(deleteStudentId);
                    break;
                case 3:
                    System.out.println("請輸入要修改的學生學號:");
                    String updateStudentId = scanner.nextLine();
                    System.out.println("請輸入新的學生姓名:");
                    String newName = scanner.nextLine();
                    System.out.println("請輸入新的學生性別:");
                    String newGender = scanner.nextLine();
                    System.out.println("請輸入新的學生年齡:");
                    int newAge = scanner.nextInt();
                    scanner.nextLine(); // 讀取換行符

                    Student updatedStudent = new Student(updateStudentId, newName, newGender, newAge);
                    system.updateStudent(updateStudentId, updatedStudent);
                    break;
                case 4:
                    System.out.println("請輸入要查詢的學生學號:");
                    String queryStudentId = scanner.nextLine();
                    system.queryStudent(queryStudentId);
                    break;
                case 5:
                    system.displayAllStudents();
                    break;
                case 0

0
濉溪县| 齐河县| 西城区| 安福县| 永安市| 金溪县| 大关县| 南部县| 白银市| 交城县| 巴林右旗| 搜索| 古蔺县| 锡林郭勒盟| 晋宁县| 朝阳县| 遵义市| 汾阳市| 临沂市| 灵宝市| 陆良县| 双辽市| 依兰县| 凌源市| 青冈县| 平谷区| 当涂县| 芮城县| 博湖县| 宁夏| 岑溪市| 资中县| 庆城县| 通州区| 湟中县| 遵义县| 吉水县| 霍城县| 铜陵市| 汉阴县| 城口县|