概述
需求分析:
添加学生:键盘录入学生信息,添加到集合
删除学生:键盘录入要删除学生的学号,将该学生对象从集合中删除
修改学生:键盘录入要修改学生的学号,将该学生对象其他信息进行修改
查看学生:将集合中的学生对象信息进行展示
退出系统:结束程序
要判断学号是否存在才可以操作,判断也要抽出来
分包分类实现,不要都在测试类写,不规范
学生类:
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;
}
}
测试类:
public class TestStudent {
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":
AddStudent.addStudent(list);
break;
case "2":
DeleteStudent.deleteStudent(list);
break;
case "3":
UpdateStudent.updateStudent(list);
break;
case "4":
QueryStudent.queryStudents(list);
break;
case "5":
System.out.println("感谢您的使用");
break lo;
default:
System.out.println("您的输入有误");
break;
}
}
}
}
学号类:
public class 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;
}
}
添加学生:
public class AddStudent {
// 添加学生的方法
public static void addStudent(ArrayList<Student> list) {
Scanner sc = new Scanner(System.in);
String sid;
while (true) {
// 1. 给出录入的提示信息
System.out.println("请输入学号:");
sid = sc.next();
int index = GetIndex.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("添加成功!");
}
}
删除学生:
public class DeleteStudent {
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.getIndex(list, deleteSid);
// 4. 根据索引判断, 学号在集合中是否存在
if (index == -1) {
// 不存在: 给出提示
System.out.println("查无信息, 请重新输入");
} else {
// 存在:删除
list.remove(index);
System.out.println("删除成功!");
}
}
}
修改学生:
public class UpdateStudent {
public static void updateStudent(ArrayList<Student> list) {
System.out.println("请输入您要修改的学生学号:");
Scanner sc = new Scanner(System.in);
String updateSid = sc.next();
// 3. 调用getIndex方法, 查找该学号在集合中出现的索引位置
int index = GetIndex.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("修改成功!");
}
}
}
查看学生:
public class QueryStudent {
public static void queryStudents(ArrayList<Student> list) {
// 1. 判断集合中是否存在数据, 如果不存在直接给出提示
if (list.size() == 0) {
System.out.println("无信息, 请添加后重新查询");
return;
}
// 2. 存在: 展示表头数据
System.out.println("学号tt姓名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() + "tt" + stu.getBirthday());
}
}
}
最后
以上就是贤惠野狼为你收集整理的学生管理系统的全部内容,希望文章能够帮你解决学生管理系统所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复