做一个单机的java学生学籍管理系统的课程设计,给出源代码

时间: 2024-01-24 18:17:52 浏览: 81
ZIP

java开发项目数据库课程设计学生学籍管理系统源代码.zip

star5星 · 资源好评率100%
很抱歉,我作为一个语言模型,并不会编写代码。但我可以给你提供一个基本的Java学生学籍管理系统的设计思路: 1. 学生信息类(Student):包含学号、姓名、性别、出生日期、家庭住址、联系电话等属性。 2. 课程信息类(Course):包含课程编号、课程名称、学分、教师名称等属性。 3. 成绩信息类(Score):包含学生学号、课程编号、成绩等属性。 4. 数据存储类(DataStorage):实现学生、课程和成绩信息的存储和查询功能。 5. 用户界面类(UserInterface):提供用户操作界面,包括添加、删除、修改、查询等功能。 6. 主函数类(Main):调用用户界面类,启动程序。 下面是一个简单的Java代码示例,供参考: ``` import java.util.ArrayList; import java.util.Scanner; public class StudentManagementSystem { public static void main(String[] args) { UserInterface ui = new UserInterface(); ui.start(); } } class Student { private String id; private String name; private String gender; private String birthday; private String address; private String tel; public Student(String id, String name, String gender, String birthday, String address, String tel) { this.id = id; this.name = name; this.gender = gender; this.birthday = birthday; this.address = address; this.tel = tel; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getGender() { return gender; } public void setGender(String gender) { this.gender = gender; } public String getBirthday() { return birthday; } public void setBirthday(String birthday) { this.birthday = birthday; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public String getTel() { return tel; } public void setTel(String tel) { this.tel = tel; } } class Course { private String id; private String name; private int credit; private String teacher; public Course(String id, String name, int credit, String teacher) { this.id = id; this.name = name; this.credit = credit; this.teacher = teacher; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getCredit() { return credit; } public void setCredit(int credit) { this.credit = credit; } public String getTeacher() { return teacher; } public void setTeacher(String teacher) { this.teacher = teacher; } } class Score { private String studentId; private String courseId; private int score; public Score(String studentId, String courseId, int score) { this.studentId = studentId; this.courseId = courseId; this.score = score; } public String getStudentId() { return studentId; } public void setStudentId(String studentId) { this.studentId = studentId; } public String getCourseId() { return courseId; } public void setCourseId(String courseId) { this.courseId = courseId; } public int getScore() { return score; } public void setScore(int score) { this.score = score; } } class DataStorage { private ArrayList<Student> studentList; private ArrayList<Course> courseList; private ArrayList<Score> scoreList; public DataStorage() { studentList = new ArrayList<Student>(); courseList = new ArrayList<Course>(); scoreList = new ArrayList<Score>(); } public void addStudent(Student student) { studentList.add(student); } public void deleteStudent(String id) { for (int i = 0; i < studentList.size(); i++) { if (studentList.get(i).getId().equals(id)) { studentList.remove(i); break; } } } public void modifyStudent(String id, String name, String gender, String birthday, String address, String tel) { for (int i = 0; i < studentList.size(); i++) { if (studentList.get(i).getId().equals(id)) { studentList.get(i).setName(name); studentList.get(i).setGender(gender); studentList.get(i).setBirthday(birthday); studentList.get(i).setAddress(address); studentList.get(i).setTel(tel); break; } } } public Student findStudent(String id) { for (int i = 0; i < studentList.size(); i++) { if (studentList.get(i).getId().equals(id)) { return studentList.get(i); } } return null; } public void addCourse(Course course) { courseList.add(course); } public void deleteCourse(String id) { for (int i = 0; i < courseList.size(); i++) { if (courseList.get(i).getId().equals(id)) { courseList.remove(i); break; } } } public void modifyCourse(String id, String name, int credit, String teacher) { for (int i = 0; i < courseList.size(); i++) { if (courseList.get(i).getId().equals(id)) { courseList.get(i).setName(name); courseList.get(i).setCredit(credit); courseList.get(i).setTeacher(teacher); break; } } } public Course findCourse(String id) { for (int i = 0; i < courseList.size(); i++) { if (courseList.get(i).getId().equals(id)) { return courseList.get(i); } } return null; } public void addScore(Score score) { scoreList.add(score); } public void deleteScore(String studentId, String courseId) { for (int i = 0; i < scoreList.size(); i++) { if (scoreList.get(i).getStudentId().equals(studentId) && scoreList.get(i).getCourseId().equals(courseId)) { scoreList.remove(i); break; } } } public void modifyScore(String studentId, String courseId, int score) { for (int i = 0; i < scoreList.size(); i++) { if (scoreList.get(i).getStudentId().equals(studentId) && scoreList.get(i).getCourseId().equals(courseId)) { scoreList.get(i).setScore(score); break; } } } public Score findScore(String studentId, String courseId) { for (int i = 0; i < scoreList.size(); i++) { if (scoreList.get(i).getStudentId().equals(studentId) && scoreList.get(i).getCourseId().equals(courseId)) { return scoreList.get(i); } } return null; } public ArrayList<Student> getStudentList() { return studentList; } public ArrayList<Course> getCourseList() { return courseList; } public ArrayList<Score> getScoreList() { return scoreList; } } class UserInterface { private DataStorage ds; private Scanner input; public UserInterface() { ds = new DataStorage(); input = new Scanner(System.in); } public void start() { boolean flag = true; while (flag) { 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("6. 删除课程"); System.out.println("7. 修改课程信息"); System.out.println("8. 查询课程信息"); System.out.println("9. 添加成绩"); System.out.println("10. 删除成绩"); System.out.println("11. 修改成绩信息"); System.out.println("12. 查询成绩信息"); System.out.println("13. 退出系统"); int choice = input.nextInt(); switch (choice) { case 1: addStudent(); break; case 2: deleteStudent(); break; case 3: modifyStudent(); break; case 4: findStudent(); break; case 5: addCourse(); break; case 6: deleteCourse(); break; case 7: modifyCourse(); break; case 8: findCourse(); break; case 9: addScore(); break; case 10: deleteScore(); break; case 11: modifyScore(); break; case 12: findScore(); break; case 13: flag = false; break; default: System.out.println("输入错误,请重新选择操作!"); break; } } } private void addStudent() { System.out.println("请输入学生信息:"); System.out.print("学号:"); String id = input.next(); System.out.print("姓名:"); String name = input.next(); System.out.print("性别:"); String gender = input.next(); System.out.print("出生日期:"); String birthday = input.next(); System.out.print("家庭地址:"); String address = input.next(); System.out.print("联系电话:"); String tel = input.next(); Student student = new Student(id, name, gender, birthday, address, tel); ds.addStudent(student); System.out.println("添加学生成功!"); } private void deleteStudent() { System.out.print("请输入要删除的学生学号:"); String id = input.next(); ds.deleteStudent(id); System.out.println("删除学生成功!"); } private void modifyStudent() { System.out.print("请输入要修改的学生学号:"); String id = input.next(); Student student = ds.findStudent(id); if (student == null) { System.out.println("该学生不存在!"); } else { System.out.print("请输入修改后的姓名:"); String name = input.next(); System.out.print("请输入修改后的性别:"); String gender = input.next(); System.out.print("请输入修改后的出生日期:"); String birthday = input.next(); System.out.print("请输入修改后的家庭地址:"); String address = input.next(); System.out.print("请输入修改后的联系电话:"); String tel = input.next(); ds.modifyStudent(id, name, gender, birthday, address, tel); System.out.println("修改学生信息成功!"); } } private void findStudent() { System.out.print("请输入要查询的学生学号:"); String id = input.next(); Student student = ds.findStudent(id); if (student == null) { System.out.println("该学生不存在!"); } else { System.out.println("学号\t姓名\t性别\t出生日期\t家庭地址\t联系电话"); System.out.println(student.getId() + "\t" + student.getName() + "\t" + student.getGender() + "\t" + student.getBirthday() + "\t" + student.getAddress() + "\t" + student.getTel()); } } private void addCourse() { System.out.println("请输入课程信息:"); System.out.print("课程编号:"); String id = input.next(); System.out.print("课程名称:"); String name = input.next(); System.out.print("学分:"); int credit = input.nextInt(); System.out.print("教师名称:"); String teacher = input.next(); Course course = new Course(id, name, credit, teacher); ds.addCourse(course); System.out.println("添加课程成功!"); } private void deleteCourse() { System.out.print("请输入要删除的课程编号:"); String id = input.next(); ds.deleteCourse(id); System.out.println("删除课程成功!"); } private void modifyCourse() { System.out.print("请输入要修改的课程编号:"); String id = input.next(); Course course = ds.findCourse(id); if (course == null) { System.out.println("该课程不存在!"); } else { System.out.print("请输入修改后的课程名称:"); String name = input.next(); System.out.print("请输入修改后的学分:"); int credit = input.nextInt(); System.out.print("请输入修改后的教师名称:"); String teacher = input.next(); ds.modifyCourse(id, name, credit, teacher); System.out.println("修改课程信息成功!"); } } private void findCourse() { System.out.print("请输入要查询的课程编号:"); String id = input.next(); Course course = ds.findCourse(id); if (course == null) { System.out.println("该课程不存在!"); } else { System.out.println("课程编号\t课程名称\t学分\t教师名称"); System.out.println(course.getId() + "\t" + course.getName() + "\t" + course.getCredit() + "\t" + course.getTeacher()); } } private void addScore() { System.out.println("请输入成绩信息:"); System.out.print("学生学号:"); String studentId = input.next(); System.out.print("课程编号:"); String courseId = input.next(); System.out.print("成绩:"); int score = input.nextInt(); Score s = new Score(studentId, courseId, score); ds.addScore(s); System.out.println("添加成绩成功!"); } private void deleteScore() { System.out.print("请输入要删除成绩的学生学号:"); String studentId = input.next(); System.out.print("请输入要删除成绩的课程编号:"); String courseId = input.next(); ds.deleteScore(studentId, courseId); System.out.println("删除成绩成功!"); } private void modifyScore() { System.out.print("请输入要修改成绩的学生学号:"); String studentId = input.next(); System.out.print("请输入要修改成绩的课程编号:"); String courseId = input.next(); Score score = ds.findScore(studentId, courseId); if (score == null) { System.out.println("该成绩不存在!"); } else { System.out.print("请输入修改后的成绩:"); int newScore = input.nextInt(); ds.modifyScore(studentId, courseId, newScore); System.out.println("修改成绩信息成功!"); } } private void findScore() { System.out.print("请输入要查询成绩的学生学号:"); String studentId = input.next(); System.out.print("请输入要查询成绩的课程编号:"); String courseId = input.next(); Score score = ds.findScore(studentId, courseId); if (score == null) { System.out.println("该成绩不存在!"); } else { System.out.println("学生学号\t课程编号\t成绩"); System.out.println(score.getStudentId() + "\t" + score.getCourseId() + "\t" + score.getScore()); } } } ```
阅读全文

相关推荐

最新推荐

recommend-type

学籍管理系统源代码 c++.docx

在这个“学籍管理系统源代码”中,我们主要涉及到C++编程语言和面向对象编程的概念。系统设计了一个学生类(Student)和一个学籍管理类(StudentManagement),用于实现学校对学生信息的管理。以下是相关的知识点: ...
recommend-type

使用Python实现 学生学籍管理系统

【使用Python实现学生学籍管理系统】是一个典型的命令行应用程序,它允许用户进行学生信息的管理,包括添加、删除和查看学生记录。以下是该系统的主要组成部分和相关知识点的详细解释: 1. **数据结构的选择**:在...
recommend-type

C语言实现简单学生学籍管理系统

本文主要介绍了使用C语言实现一个简单的学生学籍管理系统,具有参考价值。本系统包括学生信息的录入、存储和管理等功能。下面将详细介绍该系统的实现过程和代码。 一、系统设计 在设计本系统时,我们需要考虑到...
recommend-type

JSP学生学籍管理系统毕业设计论文

《JSP学生学籍管理系统毕业设计论文》 本论文详细阐述了基于JSP技术的学生学籍管理系统的设计与实现。在信息技术日益发达的今天,高效、便捷的管理方式对学籍管理工作至关重要。本系统旨在解决这一问题,通过运用...
recommend-type

数据库学籍管理系统课程设计报告.doc

在本篇《数据库学籍管理系统课程设计报告》中,作者杨杰莹针对信息技术与工程学院的《数据库原理与应用》课程进行了深入的学习和实践,设计了一个以MySQL为平台的学生学籍管理系统。该系统旨在解决传统人工管理学籍...
recommend-type

Raspberry Pi OpenCL驱动程序安装与QEMU仿真指南

资源摘要信息:"RaspberryPi-OpenCL驱动程序" 知识点一:Raspberry Pi与OpenCL Raspberry Pi是一系列低成本、高能力的单板计算机,由Raspberry Pi基金会开发。这些单板计算机通常用于教育、电子原型设计和家用服务器。而OpenCL(Open Computing Language)是一种用于编写程序,这些程序可以在不同种类的处理器(包括CPU、GPU和其他处理器)上执行的标准。OpenCL驱动程序是为Raspberry Pi上的应用程序提供支持,使其能够充分利用板载硬件加速功能,进行并行计算。 知识点二:调整Raspberry Pi映像大小 在准备Raspberry Pi的操作系统映像以便在QEMU仿真器中使用时,我们经常需要调整映像的大小以适应仿真环境或为了确保未来可以进行系统升级而留出足够的空间。这涉及到使用工具来扩展映像文件,以增加可用的磁盘空间。在描述中提到的命令包括使用`qemu-img`工具来扩展映像文件`2021-01-11-raspios-buster-armhf-lite.img`的大小。 知识点三:使用QEMU进行仿真 QEMU是一个通用的开源机器模拟器和虚拟化器,它能够在一台计算机上模拟另一台计算机。它可以运行在不同的操作系统上,并且能够模拟多种不同的硬件设备。在Raspberry Pi的上下文中,QEMU能够被用来模拟Raspberry Pi硬件,允许开发者在没有实际硬件的情况下测试软件。描述中给出了安装QEMU的命令行指令,并建议更新系统软件包后安装QEMU。 知识点四:管理磁盘分区 描述中提到了使用`fdisk`命令来检查磁盘分区,这是Linux系统中用于查看和修改磁盘分区表的工具。在进行映像调整大小的过程中,了解当前的磁盘分区状态是十分重要的,以确保不会对现有的数据造成损害。在确定需要增加映像大小后,通过指定的参数可以将映像文件的大小增加6GB。 知识点五:Raspbian Pi OS映像 Raspbian是Raspberry Pi的官方推荐操作系统,是一个为Raspberry Pi量身打造的基于Debian的Linux发行版。Raspbian Pi OS映像文件是指定的、压缩过的文件,包含了操作系统的所有数据。通过下载最新的Raspbian Pi OS映像文件,可以确保你拥有最新的软件包和功能。下载地址被提供在描述中,以便用户可以获取最新映像。 知识点六:内核提取 描述中提到了从仓库中获取Raspberry-Pi Linux内核并将其提取到一个文件夹中。这意味着为了在QEMU中模拟Raspberry Pi环境,可能需要替换或更新操作系统映像中的内核部分。内核是操作系统的核心部分,负责管理硬件资源和系统进程。提取内核通常涉及到解压缩下载的映像文件,并可能需要重命名相关文件夹以确保与Raspberry Pi的兼容性。 总结: 描述中提供的信息详细说明了如何通过调整Raspberry Pi操作系统映像的大小,安装QEMU仿真器,获取Raspbian Pi OS映像,以及处理磁盘分区和内核提取来准备Raspberry Pi的仿真环境。这些步骤对于IT专业人士来说,是在虚拟环境中测试Raspberry Pi应用程序或驱动程序的关键步骤,特别是在开发OpenCL应用程序时,对硬件资源的配置和管理要求较高。通过理解上述知识点,开发者可以更好地利用Raspberry Pi的并行计算能力,进行高性能计算任务的仿真和测试。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

Fluent UDF实战攻略:案例分析与高效代码编写

![Fluent UDF实战攻略:案例分析与高效代码编写](https://databricks.com/wp-content/uploads/2021/10/sql-udf-blog-og-1024x538.png) 参考资源链接:[fluent UDF中文帮助文档](https://wenku.csdn.net/doc/6401abdccce7214c316e9c28?spm=1055.2635.3001.10343) # 1. Fluent UDF基础与应用概览 流体动力学仿真软件Fluent在工程领域被广泛应用于流体流动和热传递问题的模拟。Fluent UDF(User-Defin
recommend-type

如何使用DPDK技术在云数据中心中实现高效率的流量监控与网络安全分析?

在云数据中心领域,随着服务的多样化和用户需求的增长,传统的网络监控和分析方法已经无法满足日益复杂的网络环境。DPDK技术的引入,为解决这一挑战提供了可能。DPDK是一种高性能的数据平面开发套件,旨在优化数据包处理速度,降低延迟,并提高网络吞吐量。具体到实现高效率的流量监控与网络安全分析,可以遵循以下几个关键步骤: 参考资源链接:[DPDK峰会:云数据中心安全实践 - 流量监控与分析](https://wenku.csdn.net/doc/1bq8jittzn?spm=1055.2569.3001.10343) 首先,需要了解DPDK的基本架构和工作原理,特别是它如何通过用户空间驱动程序和大
recommend-type

Apache RocketMQ Go客户端:全面支持与消息处理功能

资源摘要信息:"rocketmq-client-go:Apache RocketMQ Go客户端" Apache RocketMQ Go客户端是专为Go语言开发的RocketMQ客户端库,它几乎涵盖了Apache RocketMQ的所有核心功能,允许Go语言开发者在Go项目中便捷地实现消息的发布与订阅、访问控制列表(ACL)权限管理、消息跟踪等高级特性。该客户端库的设计旨在提供一种简单、高效的方式来与RocketMQ服务进行交互。 核心知识点如下: 1. 发布与订阅消息:RocketMQ Go客户端支持多种消息发送模式,包括同步模式、异步模式和单向发送模式。同步模式允许生产者在发送消息后等待响应,确保消息成功到达。异步模式适用于对响应时间要求不严格的场景,生产者在发送消息时不会阻塞,而是通过回调函数来处理响应。单向发送模式则是最简单的发送方式,只负责将消息发送出去而不关心是否到达,适用于对消息送达不敏感的场景。 2. 发送有条理的消息:在某些业务场景中,需要保证消息的顺序性,比如订单处理。RocketMQ Go客户端提供了按顺序发送消息的能力,确保消息按照发送顺序被消费者消费。 3. 消费消息的推送模型:消费者可以设置为使用推送模型,即消息服务器主动将消息推送给消费者,这种方式可以减少消费者轮询消息的开销,提高消息处理的实时性。 4. 消息跟踪:对于生产环境中的消息传递,了解消息的完整传递路径是非常必要的。RocketMQ Go客户端提供了消息跟踪功能,可以追踪消息从发布到最终消费的完整过程,便于问题的追踪和诊断。 5. 生产者和消费者的ACL:访问控制列表(ACL)是一种权限管理方式,RocketMQ Go客户端支持对生产者和消费者的访问权限进行细粒度控制,以满足企业对数据安全的需求。 6. 如何使用:RocketMQ Go客户端提供了详细的使用文档,新手可以通过分步说明快速上手。而有经验的开发者也可以根据文档深入了解其高级特性。 7. 社区支持:Apache RocketMQ是一个开源项目,拥有活跃的社区支持。无论是使用过程中遇到问题还是想要贡献代码,都可以通过邮件列表与社区其他成员交流。 8. 快速入门:为了帮助新用户快速开始使用RocketMQ Go客户端,官方提供了快速入门指南,其中包含如何设置rocketmq代理和名称服务器等基础知识。 在安装和配置方面,用户通常需要首先访问RocketMQ的官方网站或其在GitHub上的仓库页面,下载最新版本的rocketmq-client-go包,然后在Go项目中引入并初始化客户端。配置过程中可能需要指定RocketMQ服务器的地址和端口,以及设置相应的命名空间或主题等。 对于实际开发中的使用,RocketMQ Go客户端的API设计注重简洁性和直观性,使得Go开发者能够很容易地理解和使用,而不需要深入了解RocketMQ的内部实现细节。但是,对于有特殊需求的用户,Apache RocketMQ社区文档和代码库中提供了大量的参考信息和示例代码,可以用于解决复杂的业务场景。 由于RocketMQ的版本迭代,不同版本的RocketMQ Go客户端可能会引入新的特性和对已有功能的改进。因此,用户在使用过程中应该关注官方发布的版本更新日志,以确保能够使用到最新的特性和性能优化。对于版本2.0.0的特定特性,文档中提到的以同步模式、异步模式和单向方式发送消息,以及消息排序、消息跟踪、ACL等功能,是该版本客户端的核心优势,用户可以根据自己的业务需求进行选择和使用。 总之,rocketmq-client-go作为Apache RocketMQ的Go语言客户端,以其全面的功能支持、简洁的API设计、活跃的社区支持和详尽的文档资料,成为Go开发者在构建分布式应用和消息驱动架构时的得力工具。