控制台实现学生管理系统的增删查改

1、运行初始界面

 2、添加学生流程

3、查看添加的学生信息

 

 4、修改学生信息

 5.删除学生

 代码实现:

1、定义学生类

public class Student {
    private String sid;
    private String name;
    private int age;
    private String birthday;

    public Student() {
    }

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

    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 int getAge() {
        return age;
    }

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

    public String getBirthday() {
        return birthday;
    }

    public void setBirthday(String birthday) {
        this.birthday = birthday;
    }
}

 2、主方法

public class StudentManager {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        //创建集合容器对象
        ArrayList<Student> list = new ArrayList<>();

        lo:
        while (true) {
            // 1. 搭建主界面菜单
            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("请输入您的选择:");

            String choice = sc.next();
            switch (choice) {
                case "1":
                    //System.out.println("添加学生");
                    addStudent(list);
                    break;
                case "2":
                    //System.out.println("删除学生");
                    deleteStudent(list);
                    break;
                case "3":
                    //System.out.println("修改学生");
                    updateStudent(list);
                    break;
                case "4":
                    //System.out.println("查看学生");
                    queryStudents(list);
                    break;
                case "5":
                    System.out.println("谢谢您的使用");
                    break lo;
                default:
                    System.out.println("您的输入有误");
                    break;
            }
        }
    }
}

3、添加方法

//添加学生的方法
    public static void addStudent(ArrayList<Student> list) {
        Scanner sc = new Scanner(System.in);
        //1.给出录入的提示信息

        String sid ;
        //判断输入的学号不可重复
        while (true){
            System.out.println("请输入学号:");
            sid = sc.next();

            int index = getIndex(list,sid);

            if (index==-1){
                //sid不存在,学号可以使用
                break;
            }
        }
        System.out.println("请输入姓名:");
        String name = sc.next();
        System.out.println("请输入年龄:");
        int age = sc.nextInt();
        System.out.println("请输入生日:");
        String birthday = sc.next();
        //2.将键盘录入的信息封装为学生对象
        Student stu = new Student(sid, name, age, birthday);
        //3.将封装好的学生对象,添加到集合容器当中
        list.add(stu);
        //4.给出添加成功的提示信息
        System.out.println("添加成功!!!");
    }

4、查看方法

//查看学生的方法
    public static void queryStudents(ArrayList<Student> list) {
        //1.判断集合中是否存在数据,如果不存在直接给出提示信息
        if (list.size() == 0) {
            System.out.println("无信息,请添加后重新查询。");
            return;
        }
        //2.存在展示表头数据
        System.out.println("学号\t\t姓名\t年龄\t生日");
        //3.遍历集合,获取每一个对象的信息,打印在控制台
        for (int i = 0; i < list.size(); i++) {
            Student stu = list.get(i);
            System.out.println(stu.getSid() + "\t" + stu.getName() + "\t" + stu.getAge() + "\t\t" + stu.getBirthday());
        }
    }

5、添加一个获取学号的索引方法

/*
    getIndex:接收一个集合对象,接收一个学生学号

    查看这个学号,在集合中出现的索引位置
     */
    public static int getIndex(ArrayList<Student> list, String sid) {
        //1.假设传入的学号在集合中不存在
        int index = -1;
        //2.遍历集合,获取每一个集合对象准备查找
        for (int i = 0; i < list.size(); i++) {
            Student stu = list.get(i);
            //3.获取每一个学生对象的学号
            String id = stu.getSid();
            //4.使用获取出的学生学号和传入的学号(查找的学号)进行对比
            if (id.equals(sid)){
                //存在,让index变量记录正确的索引位置
                index = i;
            }
        }

        return index;
    }

6、删除方法

//删除学生的方法
    public static void deleteStudent(ArrayList<Student> list) {
        //1.给出提示信息(请输入您要删除的学号)
        System.out.println("请输入您要删除的学生学号");
        //2.键盘接收要删除的学号
        Scanner sc = new Scanner(System.in);
        String deleteSid = sc.next();
        //3.调用getIndex方法,查找该学号在集合中出现的索引位置
        int index = getIndex(list,deleteSid);
        //4.根据索引判断,学号在集合中是否存在
        if (index == -1){
            //不存在:给出提示
            System.out.println("查无信息,请重新输入");
        }else {
            //存在:删除
            list.remove(index);
            System.out.println("删除成功");
        }
    }

7、修改方法

//修改学生信息的方法
    public static void updateStudent(ArrayList<Student> list) {
        //1.给出提示信息(请输入您要修改的学号)
        System.out.println("请输入您要修改的学生学号");
        //2.键盘接收要修改的学号
        Scanner sc = new Scanner(System.in);
        String updateSid = sc.next();
        //3.调用getIndex方法,查找该学号在集合中出现的索引位置
        int index = getIndex(list,updateSid);
        //4.根据索引判断,学号在集合中是否存在
        if (index == -1){
            //不存在:给出提示
            System.out.println("查无信息,请重新输入");
        }else {
            //存在:修改
            System.out.println("请输入新的学生姓名:");
            String name = sc.next();
            System.out.println("请输入新的学生年龄:");
            int age = sc.nextInt();
            System.out.println("请输入新的学生生日:");
            String birthday = sc.next();

            //封装为新的学生对象
            Student stu = new Student(updateSid,name,age,birthday);
            //调用集合的set方法,完成修改
            list.set(index,stu);
            System.out.println("修改成功");
        }
    }

小伙伴们尝试一下吧,学会这些方法,可以帮助后面的做项目时最基础的增删查改方法!!!

  • 3
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值