当前位置:   article > 正文

Java基础——学生管理系统_学生管理系统java基础

学生管理系统java基础

学生管理系统

通过学习Java基础,采取循环,判断等语句来实现一个简单的学生管理系统

学生类

public class Student {
    //学号
    private String sid;
    //姓名
    private String name;
    //年龄
    private String age;
    //居住地
    private String address;

    public Student() {
    }

    public Student(String sid, String name, String age, String address) {
        this.sid = sid;
        this.name = name;
        this.age = age;
        this.address = address;
    }

    public String getSid() {
        return sid;
    }

    public void setSid(String sid) {
        this.sid = sid;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getAge() {
        return age;
    }

    public void setAge(String age) {
        this.age = age;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52

学生管理类

public class StudentManager {
    public static void main(String[] args) {
        ArrayList<Student> arrayList = new ArrayList<>();
        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("请输入你的选择: ");

            Scanner sc = new Scanner(System.in);
            String line = sc.nextLine();

            switch (line) {
                case "1":
                    addStudent(arrayList);
                    break;
                case "2":
                    deleteStudent(arrayList);
                    break;
                case "3":
                    updateStudent(arrayList);
                    break;
                case "4":
                    findAllStudent(arrayList);
                    break;
                case "5":
                    System.out.println("谢谢使用");
                    System.exit(0);//JVM(Java虚拟机)退出
                default:
                    System.out.println("你输入的信息有误,现在重新进入系统");
            }
        }
    }

    //添加学生
    public static void addStudent(ArrayList<Student> arrayList) {
        Scanner sc = new Scanner(System.in);
        String sid;

        while (true){
            System.out.println("请输入学生学号: ");
            sid = sc.nextLine();

            boolean flag = isUsed(arrayList, sid);
            if (flag){
                System.out.println("你输入的学号已经被使用,请重新输入!");
            }else {
                break;
            }
        }

        System.out.println("请输入学生姓名: ");
        String name = sc.nextLine();
        System.out.println("请输入学生年龄: ");
        String age = sc.nextLine();
        System.out.println("请输入学生居住地: ");
        String address = sc.nextLine();
        //创建学生对象,并将键盘录入的数据赋值给学生对象的成员变量
        Student s = new Student();
        s.setSid(sid);
        s.setName(name);
        s.setAge(age);
        s.setAddress(address);
        //将学生对象添加到集合中
        arrayList.add(s);
        //给出添加成功的提示信息
        System.out.println("添加学生成功");
    }

    //判断学号是否被使用
    public static boolean isUsed(ArrayList<Student> arrayList,String sid){
        boolean flag = false;
        for (int i = 0;i<arrayList.size();i++){
            Student student = arrayList.get(i);
            if (student.getSid().equals(sid)){
                flag = true;
                break;
            }
        }

        return flag;
    }

    //删除学生
    public static void deleteStudent(ArrayList<Student> arrayList){
        int index = -1;
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入你要删除学生的学号: ");
        String sid = sc.nextLine();
        for (int i = 0;i<arrayList.size();i++){
            Student student = arrayList.get(i);
            if (student.getSid().equals(sid)){
                index = i;
                break;
            }
        }

        if (index == -1){
            System.out.println("输入的学生" + sid + "学号不存在");
        }else {
            arrayList.remove(index);
            System.out.println("删除学生信息成功");
        }
    }

    //修改学生信息
    public static void updateStudent(ArrayList<Student> arrayList){
        int index = -1;

        Scanner sc = new Scanner(System.in);
        System.out.println("请输入你需要修改的学生的学号: ");
        String sid = sc.nextLine();

        System.out.println("请输入学生新姓名: ");
        String name = sc.nextLine();
        System.out.println("请输入学生新年龄: ");
        String age = sc.nextLine();
        System.out.println("请输入学生新居住地: ");
        String address = sc.nextLine();

        Student student = new Student();
        student.setSid(sid);
        student.setName(name);
        student.setAge(age);
        student.setAddress(address);

        for (int i = 0;i<arrayList.size();i++){
            Student student1 = arrayList.get(i);
            if (student1.getSid().equals(sid)){
                index = i;
                break;
            }else {
                System.out.println("没有学号为" + sid + "的学生,重新进入修改学生信息状态");
                updateStudent(arrayList);
            }
        }
        if (index == -1){
            System.out.println("没有学号为" + sid + "的学生,重新进入修改学生信息状态");
        }else {
            arrayList.set(index,student);
            System.out.println("修改学生信息成功");
        }

    }
    //查看全部学生
    public static void findAllStudent(ArrayList<Student> arrayList) {
        if (arrayList.size() == 0) {
            System.out.println("暂无学生信息,请输入后再查询!");
        } else {
            System.out.println("学号\t\t\t姓名\t\t\t年龄\t\t\t居住地");
            for (int i = 0; i < arrayList.size(); i++) {
                Student student = arrayList.get(i);
                System.out.println(student.getSid() + "\t" + student.getName() + "\t\t\t" + student.getAge() + "岁\t\t" + student.getAddress());
            }
        }
    }

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161

现象

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/776768
推荐阅读
相关标签
  

闽ICP备14008679号