1、高校人事管理系统C+课程项目设计说明书项目名称: 高校人事管理系统班 级: 生物技术 201103 班项目组长: 王美庭项目成员:王田、喻易、谭继鹏、霍擎、杨锏 王美庭指导教师: 叶涛完成日期: 2012-06-26成 绩: 高校人事管理系统目 录 .11 项目( 高校 人事管理系统)需求分析 11.1 项目目 标 .11.2 系统主 要功能概述 .11.3 可行 性分析 11.4 项目运行 环境 22 项目(高校人事 管理系统)设计 32.1 概要设计 32.2 详细设计 32.3 项目命名约定 52.4 项目分工表 52.5 项目进度表 53 项目(高校人事管理系 统)功能介绍 64 项目
2、(高校人事管理 系统)功能测试 65 项目使用说 明 66 项目(系 统)总结 .77 程序源代 码 7高校人事管理系统11 项目(高校人事管理系统)需求分析1.1 项目目标1. 开发一个高校人事管理系统,修改以前该系统的不足,提高系统的运作效率。1.2 系统主要功能概述1. 高校人事管理系统模块(系统流程图)1 23 45 68 7 1.3 可行性分析1.系统/技术可行性:windows 安装了 VC+6.0 即可运行。2.使用可行性采用简单的 GUI 界面,用户经过短期培训即可方便使用系统。高校人事管理系统选择要进行的操作增加人员资料 删除人员信息修改人员信息 查询人员信息数据存盘 数据装
3、入显示所有信息退出高校人事管理系统21.4 项目运行环境CPU 奔腾 1.4G 或以上内存 512M 或以上硬盘 80GB 或以上服务器端 OS Windows 2000/NT/Server客户端 OS Windows 2000/XP网络配置 局域网高校人事管理系统32 项目(高校人事管理系统)设计2.1 概要设计设计一个 person 和 school 的类,再结合 main 函数实现搞笑人事管理系统的功能 ,大致模块如下:2.2 详细设计UML 图类名:person私有成员变量:Int no,char type20,char name20,char sex10,int age, char
4、time20,char pos20,char techpos20, char party20,char study30 person *mynext公有成员函数:person(int nnum,char ntype,char nname,char nsex,int nage,char ntime,char npos,char ntechpos,char nparty,char nstudy),person(int nnum,char ntype,char nname,char nsex,int nage,char ntime,char npos,char ntechpos,char npart
5、y,char nstudy,person *next)void setnext(person *next),person *getnext(),int getnum(),char *getname(),char *getsex(),char *getpos(),char *gettechpos(),char *gettime(),char *getparty(),char *getstudy(),int getage(),void getag(int as),char *gettype()。高校人事管理系统删除功能显示功能 修改功能查询功能数据存盘与装入功能添加功能高校人事管理系统4类名:sc
6、hool私有成员变量:person *myfirst,int firstnum。公有成员函数:School(),School(int nnu,char ntyp,char nnam,char nse,int nag,char ntim,char npo,char ntechpo,char npart,char nstud),void insertatlast(int nnum,char ntype,char nname,char nsex,int nage,char ntime,char npos,char ntechpos,char nparty,char nstudy),void prin
7、tf(int r),void printf1(person *ahead),void printf(),void add(),bool removedatnum( ),bool find1(),bool find2(),bool upperson(),void load(),void save(),School()。高校人事管理系统52.3 项目命名约定类名:大写字母开头 如:School类属性:采用匈牙利命名法(即第一个字母小写并表明数据类型)如:int变量:采用匈牙利命名法(即第一个字母小写并表明数据类型) 如:c2.4 项目分工表姓名 分配任务/完成的功能模块 备注(贡献度,设总分为 6
8、0 分)喻易 人事管理系统资料的收集,让对该系统不熟的同学增加对其的了解,并协助霍擎进行类的定义。10霍擎 类的主编(person 和 school 类) 10王田 负责人事成员的信息输入,及对合并后运行时出现的一些问题进行修改和完善10谭继鹏 main 函数主编 10杨锏 对 cpp 文件进行存储模式的改编,即在系统运行中可对输入内容存储或者对已有文件的信息进行提取。10王美庭 word 文档的初编和终编。 102.5 项目进度表6 月 15 日20 日 互相学习,C+不熟练的同学帮助基础差一点的同学,以及本身 C+的全面复习6 月 21 日 项目讨论以及做项目需求分析,功能分析。项目概要设
9、计,确定分工6 月 22 日24 日 项目详细设计,编写文档初稿、创建数据,编写 CPP文件6 月 25 日 合并,部分功能测试和进行一些问题的修改。整体测试并整合出最终的 CPP 文件高校人事管理系统66 月 26 日 文档编写、增添修改,形成最终文档。3 项目(高校人事管理系统)功能介绍添加功能:实现对新成员的添加。删除功能:对离校成员信息的清楚。修改功能:对于在校人员信息的变更加以补充和消减,创建最新信息!查询功能:实现对在校人员信息的提取。数据存盘与装入功能:对以上信息的变更加以存储,实现下一次信息的调用。显示功能:VC+6.0 运行屏幕即可显示。4 项目(高校人事管理系统)功能测试最
10、主要是1,同学基础还不牢固,在编程时出现了各种小的问题和疑惑,在之后经再次书本复习和网上查阅,解决了大部分问题。2.合并时变量不同而出现了问题,后面经变量的修改实现统一化后,解决了问题。5 项目使用说明运行程序后,选择 1-8 操作中的一种。选 1,增加人员资料。需输入编号、职工分类码、姓名、性别、年龄、来院时间、职务、职称、加入党派、学历。选 2,删除人员信息。输入要删除人员的编号。假如此人员存在,会输出“编号为*的成员已被删除”假如人员不存在,会输出“要删除的成员不存在!”选 3,修改人员信息。输入要修改人员的编号,假如此人员存在,需要选择要修改的内容,包括姓名、性别、年龄、职工类型、职务
11、、职称、学历、政治面貌、来院时间。假如人员不存在,输出“没有此人” 。选 4,查询人员信息。要选择查询的方式。1 通过编号,2 通过姓名。选 1,输入要查的编号。假如此人员存在,会输出要相关人员信息。假如人员不存在,会输出“无此人信息:”选 2,输如要查的姓名。假如此人员存在,会输出要相关人员信息。假如人员不存在,会输出“查无此人:” 。选 5,数据存盘。会自动存盘,并输出“*人员和相关数据已经装入.” 。选 6,数据装入。会自动装入数据,并输出“保存数据已完成” 。选 7,显示所有信息。会输出系统所存的所有员工的各项信息。选 8,退出。高校人事管理系统76 项目(系统)总结通过程序设计,我们
12、能够基本掌握 C+程序设计的方法,并且在此基础上掌握类的构造方法,明确类中构造函数、成员函数的建立以及调用,并且,结合 C+中字符串函数的编译系统给定的库函数,采用一定的逻辑编译,实现题目中要求的各项要求,达到基本实验目的,提高了团队的 C+语言使用水平。另外,最重要的是,我们在其中收获了团队协作精神,每个人都互相努力和协作,最终使我们的任务得以完成!7 程序源代码#include#include#include#includeclass personprivate:int no;/编号 char type20;/职工类型char name20;/姓名 char sex10;/性别int ag
13、e;/年龄 char time20;/来院时间char pos20;/职务char techpos20;/职称char party20;/党派char study30;/最高学历person *mynext;/指针语public:person(int nnum,char ntype,char nname,char nsex,int nage,char ntime,char npos,char ntechpos,char nparty,char nstudy)no=nnum;strcpy(type,ntype);/将 ntype 的值复制给 typestrcpy(name,nname);strc
14、py(sex,nsex);age=nage;strcpy(time,ntime);strcpy(pos,npos);strcpy(techpos,ntechpos);高校人事管理系统8strcpy(party,nparty);strcpy(study,nstudy);mynext=NULL;person(int nnum,char ntype,char nname,char nsex,int nage,char ntime,char npos,char ntechpos,char nparty,char nstudy,person *next)/某高校,主要人员有:在职人员(行政人员、教师、一
15、般员工) 、退休人员、返聘人员和临时工。/现在,需要存储这些人员的人事档案信息:编号、姓名、性别、年龄、职务、职称、政治面貌、最高学历、来院时间。no=nnum;strcpy(type,ntype);strcpy(name,nname);strcpy(sex,nsex);age=nage;strcpy(time,ntime);strcpy(pos,npos);strcpy(techpos,ntechpos);strcpy(party,nparty);strcpy(study,nstudy);mynext=next;void setnext(person *next)mynext=next;pe
16、rson *getnext()return mynext;int getnum()return no;char *getname()return name;char *getsex()高校人事管理系统9return sex;char *getpos()return pos;char *gettechpos()return techpos;char *gettime()return time;char *getparty()return party;char *getstudy()return study;int getage()return age;void getag(int as)age=
17、as;char *gettype()return type;class Schoolprivate:person *myfirst;int firstnum;public:School()/无参构造函数高校人事管理系统10myfirst=NULL;/将指针置空School(int nnu,char ntyp,char nnam,char nse,int nag,char ntim,char npo,char ntechpo,char npart,char nstud)/有参构造函数myfirst=new person(nnu,ntyp,nnam,nse,nag,ntim,npo,ntechpo
18、,npart,nstud);/在信息最后添加新的信息 void insertatlast(int nnum,char ntype,char nname,char nsex,int nage,char ntime,char npos,char ntechpos,char nparty,char nstudy)person *next=myfirst;/定义对象指针并付初值if(next=NULL)myfirst=new person(nnum,ntype,nname,nsex,nage,ntime,npos,ntechpos,nparty,nstudy);elsewhile(next-getne
19、xt()!=NULL)next=next-getnext();next-setnext(new person(nnum,ntype,nname,nsex,nage,ntime,npos,ntechpos,nparty,nstudy,next-getnext();void printf(int r)/获取信息int nage;char ntype20,nname20,nsex20,ntime20,npos20,ntechpos20,nparty20,nstudy20;coutntype;coutnname;coutnsex;coutnage;高校人事管理系统11coutntime;coutnpo
20、s;coutntechpos;coutnparty;coutnstudy;insertatlast(r,ntype,nname,nsex,nage,ntime,npos,ntechpos,nparty,nstudy);void printf1(person *ahead)/输出信息coutgetnum()getname()getsex()getage()gettype()getpos()gettechpos()getstudy()getparty()gettime()getnum()getname() ; coutgetsex()getage() ;coutgettype()getpos()
21、; coutgettechpos()getstudy();coutgetparty()gettime()getnext();void add()/添加新信息int i,a,b;person *p1=myfirst;if(p1=NULL)couti;printf(i);elseif(p1-getnext()=NULL)/如果 p1 的后继指针为空,则执行“printf(a)”a=p1-getnum()+1;printf(a);elsewhile(p1-getnext()!=NULL)/p1 的后继指针不为空,则执行“printf(b)”p1=p1-getnext();b=p1-getnum()+
22、1;printf(b);bool removedatnum( )/删除信息int bh;person *ahead=myfirst;person *follow=ahead;coutbh;if(ahead=NULL)return false;else高校人事管理系统13if(ahead-getnum()=bh)myfirst=myfirst-getnext();coutgetnext();while(ahead!=NULL)if(ahead-getnum()=bh)follow-setnext(ahead-getnext();coutgetnext();coutid;coutgetnum()=
23、id)printf1(ahead);return true;elsefollow=ahead;ahead=ahead-getnext();coutnm;coutgetname(),nm)=0)printf1(ahead);return true;elsefollow=ahead;ahead=ahead-getnext();高校人事管理系统15coutiid;if(ahead=NULL)coutgetnum()=iid)printf1(ahead);int nu=-1;for(int i=1;nu!=0;i+)int ml;int mll;char ty30;coutml;switch(ml)c
24、ase 1:coutty;strcpy(follow-getname(),ty);break;case 2:高校人事管理系统16coutty;strcpy(ahead-getsex(),ty);break;case 3:coutmll;ahead-getag(mll);break;case 4:coutty;strcpy(ahead-gettype(),ty); break;case 5:coutty;strcpy(ahead-getpos(),ty);break;case 6:coutty;strcpy(ahead-gettechpos(),ty);break;case 7:coutty;s
25、trcpy(ahead-getstudy(),ty);break;case 8:coutty;strcpy(ahead-getparty(),ty);break;case 9:高校人事管理系统17coutty;strcpy(ahead-gettime(),ty);break; return true;elseahead=ahead-getnext();follow=ahead;coutnnumntypennamensexnagentimenposntechposnpartynstudy; insertatlast(nnum,ntype,nname,nsex,nage,ntime,npos,nt
26、echpos,nparty,nstudy);fperson.close();coutgetnum()gettype()getname()getsex()getage()gettime()getpos()gettechpos()getparty()getstudy();fpersongetnext();fperson.close();coutgetnext();delete temp;myfirst=NULL;void main()School s;/定义对象int c;docoutc;高校人事管理系统19switch(c)case 1:s.add(); break;case 2:s.removedatnum(); break;case 3:s.upperson(); break;case 4:int nm;coutnm;if(nm=1)s.find1();elses.find2();break; case 5: s.save();break;case 6: s.load();break; case 7: s.printf();break;while(c!=8);