实例介绍
员工信息查找/登录/修改功能 主要内容、功能及技术指标 1、要求利用面向对象的方法以及C++的编程思想来完成系统的设计; 2、要求在设计的过程中,建立清晰的类层次; 3、在系统设计中要分析和定义各个类,每个类中要有各自的属性和方法; 4、在系统的设计中,要求运用面向对象的机制(继承、派生及多态性)来实现系统功能。 5、在基本要求达到后,可进行创新设计,如根据查找结果进行修改的功能及设计出比较友好的界面等。 6、职工信息包括职工号、姓名、性别、年龄、学历、工资、住址、电话等(职工号不重复)。设计“职工信息管理系统”,使之能提供以下功能: 1) 系统以菜单方式工作; 2) 职
【实例截图】
【核心代码】
aed37924-2133-406f-ac16-931514b0d77f
└── 职工管理系统
├── 职工管理系统
│ ├── form2
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── form2.exe
│ │ │ ├── form2.pdb
│ │ │ ├── form2.vshost.exe
│ │ │ └── form2.vshost.exe.manifest
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── form2.csproj
│ │ ├── form2.suo
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── form2.csproj.FileListAbsolute.txt
│ │ │ ├── form2.csproj.GenerateResource.Cache
│ │ │ ├── form2.exe
│ │ │ ├── form2.pdb
│ │ │ └── form2.Properties.Resources.resources
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── 职工管理系统
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── 职工管理系统.exe
│ │ │ ├── 职工管理系统.exe.config
│ │ │ ├── 职工管理系统.pdb
│ │ │ ├── 职工管理系统.vshost.exe
│ │ │ ├── 职工管理系统.vshost.exe.config
│ │ │ └── 职工管理系统.vshost.exe.manifest
│ │ ├── careerDataSet1.Designer.cs
│ │ ├── careerDataSet1.xsc
│ │ ├── careerDataSet1.xsd
│ │ ├── careerDataSet1.xss
│ │ ├── careerDataSet2.Designer.cs
│ │ ├── careerDataSet2.xsc
│ │ ├── careerDataSet2.xsd
│ │ ├── careerDataSet2.xss
│ │ ├── careerDataSet3.Designer.cs
│ │ ├── careerDataSet3.xsc
│ │ ├── careerDataSet3.xsd
│ │ ├── careerDataSet3.xss
│ │ ├── careerDataSet4.Designer.cs
│ │ ├── careerDataSet4.xsc
│ │ ├── careerDataSet4.xsd
│ │ ├── careerDataSet4.xss
│ │ ├── careerDataSet5.Designer.cs
│ │ ├── careerDataSet5.xsc
│ │ ├── careerDataSet5.xsd
│ │ ├── careerDataSet5.xss
│ │ ├── careerDataSet6.Designer.cs
│ │ ├── careerDataSet6.xsc
│ │ ├── careerDataSet6.xsd
│ │ ├── careerDataSet6.xss
│ │ ├── careerDataSet.Designer.cs
│ │ ├── careerDataSet.xsc
│ │ ├── careerDataSet.xsd
│ │ ├── careerDataSet.xss
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Form2.cs
│ │ ├── Form2.Designer.cs
│ │ ├── Form2.resx
│ │ ├── Form3.cs
│ │ ├── Form3.Designer.cs
│ │ ├── Form3.resx
│ │ ├── Form4.cs
│ │ ├── Form4.Designer.cs
│ │ ├── Form4.resx
│ │ ├── Form5.cs
│ │ ├── Form5.Designer.cs
│ │ ├── Form5.resx
│ │ ├── Form6.cs
│ │ ├── Form6.Designer.cs
│ │ ├── Form6.resx
│ │ ├── Form7.cs
│ │ ├── Form7.Designer.cs
│ │ ├── Form7.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ │ ├── careerDataSet1.Designer.cs.dll
│ │ │ │ ├── careerDataSet2.Designer.cs.dll
│ │ │ │ ├── careerDataSet3.Designer.cs.dll
│ │ │ │ ├── careerDataSet4.Designer.cs.dll
│ │ │ │ ├── careerDataSet5.Designer.cs.dll
│ │ │ │ ├── careerDataSet6.Designer.cs.dll
│ │ │ │ ├── careerDataSet.Designer.cs.dll
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── 职工管理系统.csproj.FileListAbsolute.txt
│ │ │ ├── 职工管理系统.csproj.GenerateResource.Cache
│ │ │ ├── 职工管理系统.exe
│ │ │ ├── 职工管理系统.Form1.resources
│ │ │ ├── 职工管理系统.Form2.resources
│ │ │ ├── 职工管理系统.Form3.resources
│ │ │ ├── 职工管理系统.Form4.resources
│ │ │ ├── 职工管理系统.Form5.resources
│ │ │ ├── 职工管理系统.Form6.resources
│ │ │ ├── 职工管理系统.Form7.resources
│ │ │ ├── 职工管理系统.pdb
│ │ │ └── 职工管理系统.Properties.Resources.resources
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Resources
│ │ │ ├── 1.ico
│ │ │ ├── 2.jpg
│ │ │ ├── 4.3.jpg
│ │ │ ├── 7fc7e50ade74e7100b7b82a6.jpg
│ │ │ ├── beijing3.jpg
│ │ │ ├── c8d123802d73b015f703a6a61.jpg
│ │ │ ├── c8d123802d73b015f703a6a6.jpg
│ │ │ ├── 登录1.jpg
│ │ │ ├── 登录21.jpg
│ │ │ ├── 登录22.jpg
│ │ │ ├── 登录.jpg
│ │ │ ├── 背景21.jpg
│ │ │ └── 背景2.jpg
│ │ ├── 职工管理系统.csproj
│ │ └── 职工管理系统.suo
│ ├── 职工管理系统.sln
│ └── 职工管理系统.suo
├── 职工管理系统.sln
└── 职工管理系统.suo
16 directories, 120 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论