Java实验 学生通讯录系统.docx
《Java实验 学生通讯录系统.docx》由会员分享,可在线阅读,更多相关《Java实验 学生通讯录系统.docx(23页珍藏版)》请在三一办公上搜索。
1、Java实验 学生通讯录系统 成绩: 面向对象原理与Java实践课程实验报告 实验1:对象和类 姓 名 _ _ 班 级 _ _ 学 号 _ _ 实验地点 _ _ 实验时间 _ _ 指导教师 _ _ 面向对象原理与Java实践课程实验报告 实验1:对象和类 一、实验目的: l l l 掌握类的定义及应用方法 掌握对象的创建方法,了解实例变量、实例方法和静态字段的特性 体会Java在类和对象的设计中体现的面向对象的思想 二、实验要求: l l l l 具备Java基础知识 掌握Java中对象和类的基本概念和应用方法 设计类时注意保证类的封装性 编写程序完成以下实验内容并上交实验报告 三、实验内容:
2、 设计并实现一个“广石化院电信学院学生通信录”系统。系统采用字符界面,在出现的主界面中按提示输入相应字符以选择“增加”、“删除”、“修改”、“查找”等功能进行操作。记录的存储可采用数组或链表的方式。 四、设计思路: 为了实现该系统,首先要需要两个类;一个类为主界面服务,用于接收用户输入信息以及做出相关反应;一个类为学生信息服务,定义学生通讯录信息的各个字段,以及操作字段的各个方法,考虑到部分字段的属性问题,所以将操作方法都写在学生类中,不再另外放置在其他类中。学生信息将会采用学生类的对象数组来储存。 五、程序源代码: 下面是ZhuJieMian 主界面类 package pkg_TXL; im
3、port java.util.Scanner; public class ZhuJieMian /* * * 该类为通讯录系统的主界面提供主要功能显示,以及负责主菜单与子菜单的正常跳转 */ public static void main(String args) ); / TODO Auto-generated method stub /XueShengXinXi Stu=ChuShiHua; /初始化系统数据 XueShengXinXi Stu=new XueShengXinXi100; Stu0=new XueShengXinXi(专业, 班级, 姓名, 性别, 电话, 家庭住址 Stu
4、1=new XueShengXinXi(自动化, 自动化10-1, 张三, 男, 63256, fnhjfdhsdbh); Stu2=new XueShengXinXi(自动化, 自动化10-2, 李四, 女, 653256, nfhggdfddhsdbh); Stu3=new XueShengXinXi(电子, 电子10-1, 王五, 男, 6156, fnhvjbh); Stu4=new XueShengXinXi(电子, 电子10-2, 小红, 女, 63956, asdfnhjbh); Stu5=new XueShengXinXi(网络, 网络10-1, 小明, 男, 656, nfg
5、dgfnhjbh); Stu6=new XueShengXinXi(网络, 网络10-2, 小芳, 女, 62215, nfgdmmmdfhbdsh); Stu7=new XueShengXinXi(计算机, 计算机10-1, 黄龙, 男, 65584, bbbdddfnhjbh); Stu8=new XueShengXinXi(计算机, 计算机10-2, 陈玲, 女, 666114, mjgfddddfnhjbh); Stu9=new XueShengXinXi(测控, 测控10-1, 赵小斌, 男, 644814, fthnrehbkjhjbh); Stu10=new XueShengXi
6、nXi(测控, 测控10-2, 钱颖, 女, 63641, dbfsvnnhjbh); Stu11=new XueShengXinXi(电信, 电信10-1, 孙武, 男, 6321514, mmhmgvvdfnhjbh); Stu12=new XueShengXinXi(电信, 电信10-2, 李雨, 女, 6314, 43ghffvvdfnhjbh); for(int x=13;xStu.length;x+) Stux=new XueShengXinXi; System.out.println(欢迎使用广石化电信学院通讯录系统!); ZhuJieMian: for(int exit=0;e
7、xit=0;)/exit为退出主菜单的指示变量,0为不退出,非0为退出 System.out.println; System.out.println(*); System.out.println(*主菜单*); System.out.print( 1。查询学生信息tt); System.out.println(2。新增学生信息); System.out.print( 3。修改学生信息tt); System.out.println(4。删除学生信息); System.out.print( 5。恢复已被删除信息tt); System.out.println(6。退出); System.out.pr
8、intln(*); System.out.println(*); System.out.print(请选择你要操作的功能序号:); Scanner scn_input=new Scanner(System.in); String XuHao=scn_input.next; System.out.println; if(XuHao.equals(1) /二级菜单查询学生信息 select:for(int exit2=0;exit2=0;) /exit为退出二级菜单的指示变量,0为不退出,非0为退出 System.out.println(*); System.out.println(*二级菜单查询
9、学生信息*); System.out.println(*); System.out.println; System.out.print(请输入要查找的关键字,输入“all”显示全部信息,输入“back”返回主菜单:); String str_KeyWord=scn_input.next; System.out.println; if(str_KeyWord.equals(all) System.out.println; System.out.println(*学生通讯录信息*); XueShengXinXi.Show(Stu); System.out.println; System.out.p
10、rintln; continue select; else if(str_KeyWord.equals(back) continue ZhuJieMian; else int index=XueShengXinXi.Select(str_KeyWord,Stu); if(index0=0) System.out.println(抱歉,没有找到关于“+str_KeyWord+”的学生信息!); System.out.println; continue select; else System.out.println(*学生通讯录信息*); XueShengXinXi.Show(Stu,index)
11、; System.out.println; System.out.println; continue select; else if(XuHao.equals(2) /二级菜单新增学生信息 insert:for(int exit3=0;exit3=0;) System.out.println; System.out.println(*); System.out.println(*二级菜单新增学生信息*); System.out.println(*); System.out.println; System.out.println(请按右边的格式输入新增学生的专业/班级/姓名/性别/电话/地址信息
12、,输入“back”返回主菜单:); String str_Stu=scn_input.next; if(str_Stu.equals() System.out.println(输入有误,请重新输入!); continue insert; else if(str_Stu.equals(back) System.out.println; continue ZhuJieMian; else boolean zuoFei=XueShengXinXi.Insert(Stu, str_Stu); if(zuoFei=true) System.out.println; System.out.println(
13、由于学生信息必填项信息缺失,所以新增失败。返回至二级菜单.); System.out.println; continue insert; else System.out.println; System.out.println(新增成功!返回至二级菜单.); System.out.println; continue insert; /exit3=1; else if(XuHao.equals(3) /二级菜单修改学生信息 System.out.println(*); System.out.println(*二级菜单修改学生信息*); System.out.println(*); System.o
14、ut.println; System.out.println(*学生通讯录信息*); XueShengXinXi.Show(Stu); /System.out.println; update:for(int exit4=0;exit4=0;) /exit为退出二级菜单的指示变量,0为不退出,非0为退出 System.out.println; System.out.print(请输入要修改的学生前的序号,输入“back”返回主菜单:); String str_XuHao=scn_input.next; System.out.println; if(str_XuHao.equals(back) S
15、ystem.out.println; continue ZhuJieMian; else int id=XueShengXinXi.Str_Int(Stu,str_XuHao,false); if(id0Stu.length&id0!=0) System.out.println; /int index=XueShengXinXi.Select_index(Stu, id0); System.out.println(该学生信息如下:); System.out.print(Stuid0.str_ZhuanYe+/+Stuid0.str_BanJi+/); System.out.print(Stui
16、d0.str_XingMing+/+Stuid0.str_XingBie+/); System.out.println(Stuid0.str_DianHua+/+Stuid0.str_DiZhi); System.out.println(请按以上格式输入修改后的信息:); String str_Stu=scn_input.next; XueShengXinXi.Update(Stuid0, str_Stu); System.out.println(修改成功!已返回二级菜单); System.out.println; System.out.println(*); System.out.print
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java实验 学生通讯录系统 Java 实验 学生 通讯录 系统
链接地址:https://www.31ppt.com/p-3159638.html