Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize Information Management system based on C++

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

The knowledge points of this article "how to implement an information management system based on C++" are not quite understood by most people, so the editor summarizes the following, with detailed contents and clear steps, which can be used for reference. I hope you can get something after reading this article. Let's take a look at this "how to implement an information management system based on C++" article.

1. Use class + function to implement

2. Use vector of STL container

3. File storage mode of fstream

4. Read in and write out xls files

5. Add, delete, modify and check the four major functions of the data

6. Certain input fault tolerance

# include # define Num 20#define FALSE 0#define TRUE 1#define PATH ". / file.xls" using namespace std;class LiangshanHeros {public: char name [Num]; / / Liangshan hero's name int age; / / age char loc [Num]; / / place of origin double bounty; / / reward public: LiangshanHeros () {age = 18; bounty = 6666 } LiangshanHeros (char* _ name, int _ age, char* _ loc, double the_bounty) {strcpy (name, _ name); age = _ age; strcpy (loc, _ loc); bounty = the_bounty;} ~ LiangshanHeros () {} public: char* getName (); char* getLoc (); double getBounty (); int getAge () Public: int setName (char*); int setAge (int); int setLoc (char*); int setprice (double); public: void showMenu ();}; class params: public LiangshanHeros {public: params () {} ~ params () {} public: void InitSet (); void showMensu ();}; char* LiangshanHeros::getName () {return name;} char* LiangshanHeros::getLoc () {return loc } double LiangshanHeros::getBounty () {return bounty;} int LiangshanHeros::getAge () {return age;} int LiangshanHeros::setName (char* _ name) {if (strlen (_ name) > 20 | | strlen (_ name) < 2) {cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report