鱼C论坛

 找回密码
 立即注册
查看: 3349|回复: 39

[已解决]c++友元类成员变量问题

[复制链接]
发表于 2021-6-19 21:28:14 | 显示全部楼层 |阅读模式
50鱼币
QQ图片20210619212325.png QQ图片20210619212343.png QQ图片20210619212349.png
w[i].name是Staffoperation类的成员变量,然后在message类里面输出就为乱码,但是如第三张图片所示,在Staffoperatio类的成员函数里面输出,他的结果就是正常的,比如说内容是张三,在第一张图片里面输出就为烫烫烫,但是在第三张图片里面输出就是张三。
求求各位大佬帮帮忙
最佳答案
2021-6-19 21:28:15
147380124 发表于 2021-6-19 22:06
大佬,你就给我指点指点大概修改方向吧我自己再研究研究,就不麻烦大佬了谢谢大佬指 ...
另一个问题
        strcpy_s(name_m, strlen(w.name) + 1, w.name);

w 是什么?是一个数组
至少也是 w[i].name 吧?
直接 w.name 吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 21:28:15 | 显示全部楼层    本楼为最佳答案   
147380124 发表于 2021-6-19 22:06
大佬,你就给我指点指点大概修改方向吧我自己再研究研究,就不麻烦大佬了谢谢大佬指 ...
另一个问题
        strcpy_s(name_m, strlen(w.name) + 1, w.name);

w 是什么?是一个数组
至少也是 w[i].name 吧?
直接 w.name 吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 21:41:47 | 显示全部楼层
发代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 21:43:29 | 显示全部楼层

代码有点多,因为是项目出了毛病
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 21:46:23 | 显示全部楼层
147380124 发表于 2021-6-19 21:43
代码有点多,因为是项目出了毛病

你只发个代码片段,我没办法把程序运行起来调试呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 21:46:24 | 显示全部楼层


#include<iostream>
using namespace std;


void menu()//定义菜单函数
{
    cout << endl;
    cout << "---------------------------人事档案管理系统---------------------------" << endl << endl;
    cout << "\t\t\t 1:添加职员具体信息" << endl;
    cout << "\t\t\t 2:按姓名查找职员信息" << endl;
    cout << "\t\t\t 3:按编号查找职员信息" << endl;
    cout << "\t\t\t 4:按姓名删除职员信息" << endl;
    cout << "\t\t\t 5:按编号删除职员信息" << endl;
    cout << "\t\t\t 6:显示人事管理系统中所有职员信息" << endl;
    cout << "\t\t\t 7:清空人事管理系统中所有职员信息" << endl;
    cout << "\t\t\t 8:统计人事管理系统中的职员总数" << endl;
    cout << "\t\t\t 0:退出人事档案管理系统" << endl;
    cout << "**********************************************************************" << endl;
}

class Person {//普通人
public:
    char name[30];
    char sex[20];
    char age[20];


};

//职工职位
class PersonPosition :virtual public Person {//Person为虚基类
public:
    char position[20];//职位
    PersonPosition() {
        //Null
    }
    ~PersonPosition() {
        //Null
    }
};

//操作时间
class OperationTime :virtual public Person {//Person为虚基类
public:
    char engage_time[100];//聘用时间
    char add_time[100];//记录时间
    OperationTime() {
        //Null
    }
    ~OperationTime() {
        //Null
    }
};

//职工基本信息
class Worker :public PersonPosition, public OperationTime {//继承PersonPosition、OperationTime类,多重继承。
private:
    char num[20];//编号
    char address[500];//地址
    char tel[100];//手机号
    char nation[30];//民族
    char political_status[20];//政治面貌
    char marital_status[20];//婚姻状况
    char school[200];//毕业院校
    char identity[500];//身份证号
    char email[20];//邮箱

    friend class message;//友元类message

    Worker() {
        //Null
    }
    ~Worker() {
        //Null
    }
    friend class Staffoperation;//定义友元操作类

};

//操作函数
class Staffoperation :public PersonPosition, public OperationTime {//多重继承
private:
    Worker w[101];//100为员工最多数量
    int Num;//用于表示记录时员工的序号
    int all;//用于表示系统含有多少名员工

public:
    Staffoperation() {
        Num = 1;
        all = 0;
    }
    virtual void show() {
        //Null
        //定义虚函数show,供message类调用
    }

    void add_person();//添加员工具体信息
    void searchname();//按姓名查找
    void searchnum();//按编号查找
    void delname();//按姓名删除
    void delnum();//按编号删除
    void showall();//显示人事管理系统中所有员工信息
    void delall();//清空人事管理系统中所有员工信息
    void total();//统计人事管理系统中的员工总数

    friend ostream& operator<<(ostream& out, int a[]);

    friend class message;//定义友元类

};

//message类用于重载运算符
class message :public Staffoperation {
private:
    char name_m[32];
    char sex_m[22];
    char age_m[22];
    char num_m[22];//编号
    char address_m[502];//地址
    char tel_m[102];//手机号
    char nation_m[32];//民族
    char political_status_m[22];//政治面貌
    char marital_status_m[22];//婚姻状况
    char school_m[202];//毕业院校
    char identity_m[502];//身份证号
    char email_m[22];//邮箱
    char position_m[22];//职位
    char engage_time_m[102];//聘用时间
    char add_time_m[102];//记录时间
public:
    message(int i) {
        strcpy_s(name_m, strlen(w[i].name) + 1, w[i].name);
        strcpy_s(sex_m, strlen(w[i].sex) + 1, w[i].sex);
        strcpy_s(age_m, strlen(w[i].age) + 1, w[i].age);
        strcpy_s(num_m, strlen(w[i].num) + 1, w[i].num);
        strcpy_s(address_m, strlen(w[i].name) + 1, w[i].name);
        strcpy_s(tel_m, strlen(w[i].tel) + 1, w[i].tel);
        strcpy_s(nation_m, strlen(w[i].nation) + 1, w[i].nation);
        strcpy_s(political_status_m, strlen(w[i].political_status) + 1, w[i].political_status);
        strcpy_s(marital_status_m, strlen(w[i].marital_status) + 1, w[i].marital_status);
        strcpy_s(school_m, strlen(w[i].school) + 1, w[i].school);
        strcpy_s(identity_m, strlen(w[i].identity) + 1, w[i].identity);
        strcpy_s(email_m, strlen(w[i].email) + 1, w[i].email);
        strcpy_s(position_m, strlen(w[i].position) + 1, w[i].position);
        strcpy_s(engage_time_m, strlen(w[i].engage_time) + 1, w[i].engage_time);
        strcpy_s(add_time_m, strlen(w[i].add_time) + 1, w[i].add_time);
    }

    //拷贝构造函数
    message(const message& me) {
        strcpy_s(name_m, strlen(me.name_m) + 1, me.name_m);
        strcpy_s(sex_m, strlen(me.sex_m) + 1, me.sex_m);
        strcpy_s(age_m, strlen(me.age_m) + 1, me.age_m);
        strcpy_s(num_m, strlen(me.num_m) + 1, me.num_m);
        strcpy_s(address_m, strlen(me.name_m) + 1, me.name_m);
        strcpy_s(tel_m, strlen(me.tel_m) + 1, me.tel_m);
        strcpy_s(nation_m, strlen(me.nation_m) + 1, me.nation_m);
        strcpy_s(political_status_m, strlen(me.political_status_m) + 1, me.political_status_m);
        strcpy_s(marital_status_m, strlen(me.marital_status_m) + 1, me.marital_status_m);
        strcpy_s(school_m, strlen(me.school_m) + 1, me.school_m);
        strcpy_s(identity_m, strlen(me.identity_m) + 1, me.identity_m);
        strcpy_s(email_m, strlen(me.email_m) + 1, me.email_m);
        strcpy_s(position_m, strlen(me.position_m) + 1, me.position_m);
        strcpy_s(engage_time_m, strlen(me.engage_time_m) + 1, me.engage_time_m);
        strcpy_s(add_time_m, strlen(me.add_time_m) + 1, me.add_time_m);
    }
    friend ostream& operator<<(ostream& out, message& m);//重载运算符<<
    void show() {
        cout << *this;
    }
};

//重载运算符<<
ostream& operator<<(ostream& out, message& m) {
    out << " 编号:" << m.num_m << endl;
    out << " 姓名:" << m.name_m << endl;
    out << " 年龄:" << m.age_m << endl;
    out << " 性别:" << m.sex_m << endl;
    out << " 地址:" << m.address_m << endl;
    out << " 手机号:" << m.tel_m << endl;
    out << " 国家:" << m.nation_m << endl;
    out << " 政治面貌:" << m.political_status_m << endl;
    out << " 婚姻状况:" << m.marital_status_m << endl;
    out << " 毕业院校:" << m.school_m << endl;
    out << " 身份证号:" << m.identity_m << endl;
    out << " 邮箱:" << m.email_m << endl;
    out << " 聘用时间:" << m.engage_time_m << endl;
    out << " 记录时间:" << m.add_time_m << endl;
    return out;
}

//密码系统(如需使用管理系统,需要输入正确的密码,若连续三次密码错误,则系统推出)
void password()
{

    int password;
    int j = 1;
    cout << "欲使用本系统,请输入本系统的密码:" << endl;
    cin >> password;
    while (password != 888 && j < 3)
    {
        try {//应用异常出来来验证密码
            if (password != 888)
                throw - 1; //抛出int类型异常

        }

        catch (int e) {
            cout << "您输入的密码有误,请再次输入: " << endl;
            j++;
            cin >> password;
        }

    }
    if (password != 888 && j >= 3)
    {
        cout << "您连续三次输入密码有误,系统自动退出" << endl;
        exit(0);
    }
    else {
        cout << endl << "欢迎进入人事档案管理系统\n请根据系统功能列表选择相应的功能(请输入选项对应的数字) " << endl;
    }
}

//添加员工具体信息
void Staffoperation::add_person() {
    string choice = "Y";
    char num1[20];
    while (choice == "Y" || choice == "y")
    {
        cout << "-----新建人事档案职员信息----" << endl;
        cout << "请输入职员的的编号:(1 - 100) " << endl;
        cin >> num1;
        for (int x = 0; x <= all; x++)//判断是否有重复的编号
        {
            while (strcmp(w[x].num, num1) == 0)
            {
                cout << "此职工编号已存在,请重新输入:" << endl;
                cout << "请输入职员的的编号:(1 - 100) " << endl;
                cin >> num1;
                x = 0;
            }
        }
        strcpy_s(w[Num].num, num1);
        cout << "请输入职员姓名:" << endl;
        cin >> w[Num].name;
        //cout << "请输入性别:" << endl;
        //cin >> w[Num].sex;
        //while (strcmp(w[Num].sex,"男")!=0 && strcmp(w[Num].sex, "女") != 0)
        //{
        //    cout << "您输入的性别有误,请核对后再输入: " << endl;
        //    cin >> w[Num].sex;
        //}
        //cout << "请输入年龄:" << endl;
        //cin >> w[Num].age;
        //cout << "请输入该职员的职位:(经理,管理员,员工) " << endl;
        //cin >> w[Num].position;
        //while ((string)w[Num].position != "经理" && (string)w[Num].position != "管理员" && (string)w[Num].position != "员工")
        //{
        //    cout << "您输入的职工职位有误,请核对后再输入: " << endl;
        //    cin >> w[Num].position;
        //}
        //cout << "请输入该职员的家庭地址: " << endl;
        //cin >> w[Num].address;
        //cout << "请输入该职员的民族:" << endl;
        //cin >> w[Num].nation;
        //cout << "请输入职员的政治面貌:(群众,团员,党员)" << endl;
        //cin >> w[Num].political_status;
        //while ((string)w[Num].political_status != "群众" && (string)w[Num].political_status != "团员" && (string)w[Num].political_status != "党员")
        //{
        //    cout << "您输入的职工政治面貌有误,请核对后再输入: " << endl;
        //    cin >> w[Num].political_status;
        //}
        //cout << "请输入职员的婚姻状况(未婚,已婚)" << endl;
        //cin >> w[Num].marital_status;
        //while ((string)w[Num].marital_status != "未婚" && (string)w[Num].marital_status != "已婚")
        //{
        //    cout << "您输入的职工的婚姻状况有误,请核对后再输入: " << endl;
        //    cin >> w[Num].marital_status;
        //}
        //cout << "请输入职员的毕业学校: " << endl;
        //cin >> w[Num].school;
        //cout << "请输入职员的身份证号:" << endl;
        //cin >> w[Num].identity;
        //cout << "请输入职员的手机号:" << endl;
        //cin >> w[Num].tel;
        //cout << "请输入职员的邮箱: " << endl;
        //cin >> w[Num].email;
        //cout << "请输人职员的聘用时间:" << endl;
        //cin >> w[Num].engage_time;
        //cout << "请输入此次记录的添加时间:" << endl;
        //cin >> w[Num].add_time;
        cout << "信息添加成功!" << endl;
        cout << "您还想继续添加吗?( y/n) " << endl;
        cin >> choice;
        while (choice != "Y" && choice != "y" && choice != "N" && choice != "n")
        {
            cout << "请按要求键入(y/n) " << endl;
            cin >> choice;
        }
        if (choice == "N" || choice == "n")
        {
            Num++;
            all++;
            break;
        }
        Num++;
        all++;
    }
}

//按姓名查找
void Staffoperation::searchname() {
    if (all == 0) {
        cout << "目前还没有员工计入系统,即将返回主菜单....." << endl;
        menu();
    }
    else {
        char name1[30];
        int flag = 0;//查询成功标志
        cout << "请输入你想要查询的姓名:" << endl;
        cin >> name1;
        for (int i = 0; i < 100; i++) {
            if (strcmp(name1, w[i].name) == 0) {
                cout << "查询成功!该员工的信息如下: " << endl;
                int l = i;
                message A(l);
                cout << A.name << endl;
                cout << w[i].name << endl;

                //message B(A);//调用拷贝构造函数
                //B.show();
                flag = 1;
                break;
            }
        }
        if (flag == 0) {
            cout << "查询失败!系统中没有此人信息!即将返回主菜单....." << endl;
        }
    }
}

//按编号查找
void Staffoperation::searchnum() {
    if (all == 0) {
        cout << "目前还没有员工计入系统,即将返回主菜单....." << endl;
        menu();
    }
    else {
        char num1[20];
        int flag = 0;//查询成功标志
        cout << "请输入你想要查询的编号:" << endl;
        cin >> num1;
        for (int i = 0; i < 100; i++) {
            if (strcmp(w[i].num, num1) == 0) {
                cout << "查询成功!该员工的信息如下: " << endl;
                message A(i);
                //message B(A);//调用拷贝构造函数
/*               B.show();*/
                flag = 1;
                break;
            }
        }
        if (flag == 0) {
            cout << "查询失败!系统中没有此人信息!即将返回主菜单....." << endl;
        }
    }
}

//按姓名删除
void Staffoperation::delname() {
    if (all == 0) {
        cout << "目前还没有员工计入系统!" << endl;
    }
    char name2[30];
    cout << "请输入你想要删除的员工姓名:" << endl;
    cin >> name2;
    int flag = 0;//删除标志
    for (int i = 0; i < 100; i++) {
        if (strcmp(name2, w[i].name) == 0) {
            cout << "你想要删除的员工的信息如下: " << endl;
            message A(i);
            //message B(A);//调用拷贝构造函数
            //B.show();
            flag = 1;
            break;
        }
    }
    if (flag == 0) {
        cout << "系统中没有此人信息!" << endl;
    }
    cout << "确认删除请输入Y,返回主菜单请输入N " << endl;
    string p;
    int j = 0;
    cin >> p;
    while (1)
    {
        if (p == "y" || p == "Y")
        {
            for (int i = 0; i < 100; i++) {
                if (strcmp(name2, w[i].name) == 0) {
                    j = i;
                }
            }
            for (; j <= 99; j++) {
                w[j] = w[j + 1];
            }
            all--;
            cout << "员工信息已删除!" << endl;
            break;
        }
        else if (p == "n" || p == "N")
        {
            menu();
            break;
        }
        else
        {
            cout << "输入有误,请重新输入:";
            cin >> p;
        }
    }

}

//按编号删除
void Staffoperation::delnum() {
    if (all == 0) {
        cout << "目前还没有员工计入系统!." << endl;
    }
    char num2[20];
    cout << "请输入你想要删除的员工编号:" << endl;
    cin >> num2;
    int flag = 0;//删除标志
    for (int i = 0; i < 100; i++) {
        if (strcmp(w[i].num, num2) == 0) {
            cout << "你想要删除的员工的信息如下: " << endl;
            message A(i);
            //message B(A);//调用拷贝构造函数
            //B.show();
            flag = 1;
            break;
        }
    }
    if (flag == 0) {
        cout << "系统中没有此人信息!" << endl;
    }
    cout << "确认删除请输入Y,返回主菜单请输入N " << endl;
    string p;
    int j;
    cin >> p;
    while (1)
    {
        if (p == "y" || p == "Y")
        {
            for (int i = 0; i < 100; i++) {
                if (strcmp(w[i].num, num2) == 0) {
                    j = i;
                }
            }
            for (; j <= 99; j++) {
                w[j] = w[j + 1];
            }
            all--;
            cout << "员工信息已删除!" << endl;
            break;
        }
        else if (p == "n" || p == "N")
        {
            menu();
            break;
        }
        else
        {
            cout << "输入有误,请重新输入:";
            cin >> p;
        }
    }

}

//显示人事管理系统中所有员工信息
void Staffoperation::showall() {
    if (all == 0) {
        cout << "信息库为空,请添加职员!" << endl;
        menu();
    }
    else {
        cout << "所有员工的信息如下: " << endl;
        for (int i = 1; i <= all; i++) {
            message A(i);
            //message B(A);//调用拷贝构造函数
            //B.show();
        }
        ///////////////////////////////////////////
    }
}

//清空人事管理系统中所有员工信息
void Staffoperation::delall() {
    for (int x = 1; x <= all; x++) {
        w[x] = w[0];
    }
    all = 0;
    Num = 1;
    cout << "数据已清空!" << endl;
}

//统计人事管理系统中的员工总数
void Staffoperation::total() {
    cout << "系统中一共有:" << all << "名职工的信息。" << endl;
}

//定义控制函数
void manage()
{
    Staffoperation per;
    int choice, k = 1;
    menu();
    cout << "请根据系统功能列表选择相应的功能(请输入选项对应的数字)" << endl;
    //password();
    while (k)
    {
        cin >> choice;
        switch (choice)
        {
        case 1:
            per.add_person();//调用增加人事档案中职员信息函数
            break;
        case 2:
            per.searchname();//调用按姓名查找职工信息函数
            break;
        case 3:
            per.searchnum();//调用按编号查找职工信息函数
            break;
        case 4:
            per.delname();//调用按姓名删除职工信息函数
            break;
        case 5:
            per.delnum();//调用按编号删除职工信息函数
            break;
        case 6:
            per.showall();//调用显示人事档案管理系统中所有职员信息的函数
            break;
        case 7:
            per.delall();//调用清空人事档案管理系统中所有数据的函数
            break;
        case 8:
            per.total();//调用输出人事档案管理系统中职员数的函数
            break;
        case 0:
            cout << endl << "即将退出人事档案管理系统,再见!" << endl << endl;
            k = 0;
            break;
        default:
            cout << "您输入的选项有错,请重新选择! ";
        }
        if (k != 0)
        {
            menu();
            cout << "请根据系统功能列表选择相应的功能(请输入选项对应的数字)" << endl;
        }
    }
}

int main()
{
    manage();

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 21:48:22 | 显示全部楼层
人造人 发表于 2021-6-19 21:46
你只发个代码片段,我没办法把程序运行起来调试呀

大佬,我知道我这个代码有些是脱了裤子放屁,但是有的像拷贝构造函数这些是老师的要求,必须要加。。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 22:02:00 | 显示全部楼层
147380124 发表于 2021-6-19 21:48
大佬,我知道我这个代码有些是脱了裤子放屁,但是有的像拷贝构造函数这些是老师的要求,必须要加。。。。 ...

不要用微软的安全函数,因为不可移植
这么多报错
main.cpp: In constructor ‘message::message(int)’:
main.cpp:133:35: error: request for member ‘name’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  133 |         strcpy_s(name_m, strlen(w.name) + 1, w.name);
      |                                   ^~~~
main.cpp:133:26: error: ‘strlen’ was not declared in this scope
  133 |         strcpy_s(name_m, strlen(w.name) + 1, w.name);
      |                          ^~~~~~
main.cpp:2:1: note: ‘strlen’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
    1 | #include <iostream>
  +++ |+#include <cstring>
    2 | 
main.cpp:133:48: error: request for member ‘name’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  133 |         strcpy_s(name_m, strlen(w.name) + 1, w.name);
      |                                                ^~~~
main.cpp:133:9: error: ‘strcpy_s’ was not declared in this scope
  133 |         strcpy_s(name_m, strlen(w.name) + 1, w.name);
      |         ^~~~~~~~
main.cpp:134:34: error: request for member ‘sex’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  134 |         strcpy_s(sex_m, strlen(w.sex) + 1, w.sex);
      |                                  ^~~
main.cpp:134:46: error: request for member ‘sex’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  134 |         strcpy_s(sex_m, strlen(w.sex) + 1, w.sex);
      |                                              ^~~
main.cpp:135:34: error: request for member ‘age’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  135 |         strcpy_s(age_m, strlen(w.age) + 1, w.age);
      |                                  ^~~
main.cpp:135:46: error: request for member ‘age’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  135 |         strcpy_s(age_m, strlen(w.age) + 1, w.age);
      |                                              ^~~
main.cpp:136:34: error: request for member ‘num’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  136 |         strcpy_s(num_m, strlen(w.num) + 1, w.num);
      |                                  ^~~
main.cpp:136:46: error: request for member ‘num’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  136 |         strcpy_s(num_m, strlen(w.num) + 1, w.num);
      |                                              ^~~
main.cpp:137:38: error: request for member ‘name’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  137 |         strcpy_s(address_m, strlen(w.name) + 1, w.name);
      |                                      ^~~~
main.cpp:137:51: error: request for member ‘name’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  137 |         strcpy_s(address_m, strlen(w.name) + 1, w.name);
      |                                                   ^~~~
main.cpp:138:34: error: request for member ‘tel’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  138 |         strcpy_s(tel_m, strlen(w.tel) + 1, w.tel);
      |                                  ^~~
main.cpp:138:46: error: request for member ‘tel’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  138 |         strcpy_s(tel_m, strlen(w.tel) + 1, w.tel);
      |                                              ^~~
main.cpp:139:37: error: request for member ‘nation’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  139 |         strcpy_s(nation_m, strlen(w.nation) + 1, w.nation);
      |                                     ^~~~~~
main.cpp:139:52: error: request for member ‘nation’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  139 |         strcpy_s(nation_m, strlen(w.nation) + 1, w.nation);
      |                                                    ^~~~~~
main.cpp:140:47: error: request for member ‘political_status’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  140 |         strcpy_s(political_status_m, strlen(w.political_status) + 1, w.political_status);
      |                                               ^~~~~~~~~~~~~~~~
main.cpp:140:72: error: request for member ‘political_status’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  140 |         strcpy_s(political_status_m, strlen(w.political_status) + 1, w.political_status);
      |                                                                        ^~~~~~~~~~~~~~~~
main.cpp:141:45: error: request for member ‘marital_status’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  141 |         strcpy_s(marital_status_m, strlen(w.marital_status) + 1, w.marital_status);
      |                                             ^~~~~~~~~~~~~~
main.cpp:141:68: error: request for member ‘marital_status’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  141 |         strcpy_s(marital_status_m, strlen(w.marital_status) + 1, w.marital_status);
      |                                                                    ^~~~~~~~~~~~~~
main.cpp:142:37: error: request for member ‘school’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  142 |         strcpy_s(school_m, strlen(w.school) + 1, w.school);
      |                                     ^~~~~~
main.cpp:142:52: error: request for member ‘school’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  142 |         strcpy_s(school_m, strlen(w.school) + 1, w.school);
      |                                                    ^~~~~~
main.cpp:143:39: error: request for member ‘identity’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  143 |         strcpy_s(identity_m, strlen(w.identity) + 1, w.identity);
      |                                       ^~~~~~~~
main.cpp:143:56: error: request for member ‘identity’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  143 |         strcpy_s(identity_m, strlen(w.identity) + 1, w.identity);
      |                                                        ^~~~~~~~
main.cpp:144:36: error: request for member ‘email’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  144 |         strcpy_s(email_m, strlen(w.email) + 1, w.email);
      |                                    ^~~~~
main.cpp:144:50: error: request for member ‘email’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  144 |         strcpy_s(email_m, strlen(w.email) + 1, w.email);
      |                                                  ^~~~~
main.cpp:145:39: error: request for member ‘position’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  145 |         strcpy_s(position_m, strlen(w.position) + 1, w.position);
      |                                       ^~~~~~~~
main.cpp:145:56: error: request for member ‘position’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  145 |         strcpy_s(position_m, strlen(w.position) + 1, w.position);
      |                                                        ^~~~~~~~
main.cpp:146:42: error: request for member ‘engage_time’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  146 |         strcpy_s(engage_time_m, strlen(w.engage_time) + 1, w.engage_time);
      |                                          ^~~~~~~~~~~
main.cpp:146:62: error: request for member ‘engage_time’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  146 |         strcpy_s(engage_time_m, strlen(w.engage_time) + 1, w.engage_time);
      |                                                              ^~~~~~~~~~~
main.cpp:147:39: error: request for member ‘add_time’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  147 |         strcpy_s(add_time_m, strlen(w.add_time) + 1, w.add_time);
      |                                       ^~~~~~~~
main.cpp:147:56: error: request for member ‘add_time’ in ‘((message*)this)->message::<anonymous>.Staffoperation::w’, which is of non-class type ‘Worker [101]’
  147 |         strcpy_s(add_time_m, strlen(w.add_time) + 1, w.add_time);
      |                                                        ^~~~~~~~
main.cpp: In copy constructor ‘message::message(const message&)’:
main.cpp:151:26: error: ‘strlen’ was not declared in this scope
  151 |         strcpy_s(name_m, strlen(me.name_m) + 1, me.name_m);
      |                          ^~~~~~
main.cpp:151:26: note: ‘strlen’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp:151:9: error: ‘strcpy_s’ was not declared in this scope
  151 |         strcpy_s(name_m, strlen(me.name_m) + 1, me.name_m);
      |         ^~~~~~~~
main.cpp: In member function ‘void Staffoperation::add_person()’:
main.cpp:236:20: error: ‘strcmp’ was not declared in this scope
  236 |             while (strcmp(w[x].num, num1) == 0)
      |                    ^~~~~~
main.cpp:236:20: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp:244:9: error: ‘strcpy_s’ was not declared in this scope
  244 |         strcpy_s(w[Num].num, num1);
      |         ^~~~~~~~
main.cpp: In member function ‘void Staffoperation::searchname()’:
main.cpp:324:33: error: request for member ‘name’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  324 |             if (strcmp(name1, w.name) == 0) {
      |                                 ^~~~
main.cpp:324:17: error: ‘strcmp’ was not declared in this scope
  324 |             if (strcmp(name1, w.name) == 0) {
      |                 ^~~~~~
main.cpp:324:17: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp:329:27: error: request for member ‘name’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  329 |                 cout << w.name << endl;
      |                           ^~~~
main.cpp: In member function ‘void Staffoperation::searchnum()’:
main.cpp:354:26: error: request for member ‘num’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  354 |             if (strcmp(w.num, num1) == 0) {
      |                          ^~~
main.cpp:354:17: error: ‘strcmp’ was not declared in this scope
  354 |             if (strcmp(w.num, num1) == 0) {
      |                 ^~~~~~
main.cpp:354:17: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp: In member function ‘void Staffoperation::delname()’:
main.cpp:379:29: error: request for member ‘name’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  379 |         if (strcmp(name2, w.name) == 0) {
      |                             ^~~~
main.cpp:379:13: error: ‘strcmp’ was not declared in this scope
  379 |         if (strcmp(name2, w.name) == 0) {
      |             ^~~~~~
main.cpp:379:13: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp:400:37: error: request for member ‘name’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  400 |                 if (strcmp(name2, w.name) == 0) {
      |                                     ^~~~
main.cpp:400:21: error: ‘strcmp’ was not declared in this scope
  400 |                 if (strcmp(name2, w.name) == 0) {
      |                     ^~~~~~
main.cpp:400:21: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp: In member function ‘void Staffoperation::delnum()’:
main.cpp:435:22: error: request for member ‘num’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  435 |         if (strcmp(w.num, num2) == 0) {
      |                      ^~~
main.cpp:435:13: error: ‘strcmp’ was not declared in this scope
  435 |         if (strcmp(w.num, num2) == 0) {
      |             ^~~~~~
main.cpp:435:13: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
main.cpp:456:30: error: request for member ‘num’ in ‘((Staffoperation*)this)->Staffoperation::w’, which is of non-class type ‘Worker [101]’
  456 |                 if (strcmp(w.num, num2) == 0) {
      |                              ^~~
main.cpp:456:21: error: ‘strcmp’ was not declared in this scope
  456 |                 if (strcmp(w.num, num2) == 0) {
      |                     ^~~~~~
main.cpp:456:21: note: ‘strcmp’ is defined in header ‘<cstring>’; did you forget to ‘#include <cstring>’?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 22:02:59 | 显示全部楼层
本帖最后由 人造人 于 2021-6-19 22:04 编辑
147380124 发表于 2021-6-19 21:48
大佬,我知道我这个代码有些是脱了裤子放屁,但是有的像拷贝构造函数这些是老师的要求,必须要加。。。。 ...

另一个问题
        strcpy_s(name_m, strlen(w.name) + 1, w.name);

w 是什么?是一个数组
至少也是 w[i].name 吧?
直接 w.name 吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 22:03:48 | 显示全部楼层
这么多的 _s 函数,全部改一遍,实在头疼
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:06:08 | 显示全部楼层
人造人 发表于 2021-6-19 22:03
这么多的 _s 函数,全部改一遍,实在头疼

大佬,你就给我指点指点大概修改方向吧我自己再研究研究,就不麻烦大佬了谢谢大佬指点!!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:07:47 | 显示全部楼层

好的,谢谢大佬!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:09:57 | 显示全部楼层

大佬,我刚刚看了下,我是写的w[i].name,但是复制过来就没了我重新修改一下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 22:11:06 | 显示全部楼层
147380124 发表于 2021-6-19 22:09
大佬,我刚刚看了下,我是写的w.name,但是复制过来就没了我重新修改一下
所以要用代码格式发代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:11:52 | 显示全部楼层
#include<iostream>
using namespace std;


void menu()//定义菜单函数
{
    cout << endl;
    cout << "---------------------------人事档案管理系统---------------------------" << endl << endl;
    cout << "\t\t\t 1:添加职员具体信息" << endl;
    cout << "\t\t\t 2:按姓名查找职员信息" << endl;
    cout << "\t\t\t 3:按编号查找职员信息" << endl;
    cout << "\t\t\t 4:按姓名删除职员信息" << endl;
    cout << "\t\t\t 5:按编号删除职员信息" << endl;
    cout << "\t\t\t 6:显示人事管理系统中所有职员信息" << endl;
    cout << "\t\t\t 7:清空人事管理系统中所有职员信息" << endl;
    cout << "\t\t\t 8:统计人事管理系统中的职员总数" << endl;
    cout << "\t\t\t 0:退出人事档案管理系统" << endl;
    cout << "**********************************************************************" << endl;
}

class Person {//普通人
public:
    char name[30];
    char sex[20];
    char age[20];


};

//职工职位
class PersonPosition :virtual public Person {//Person为虚基类
public:
    char position[20];//职位
    PersonPosition() {
        //Null
    }
    ~PersonPosition() {
        //Null
    }
};

//操作时间
class OperationTime :virtual public Person {//Person为虚基类
public:
    char engage_time[100];//聘用时间
    char add_time[100];//记录时间
    OperationTime() {
        //Null
    }
    ~OperationTime() {
        //Null
    }
};

//职工基本信息
class Worker :public PersonPosition, public OperationTime {//继承PersonPosition、OperationTime类,多重继承。
private:
    char num[20];//编号
    char address[500];//地址
    char tel[100];//手机号
    char nation[30];//民族
    char political_status[20];//政治面貌
    char marital_status[20];//婚姻状况
    char school[200];//毕业院校
    char identity[500];//身份证号
    char email[20];//邮箱

    friend class message;//友元类message

    Worker() {
        //Null
    }
    ~Worker() {
        //Null
    }
    friend class Staffoperation;//定义友元操作类

};

//操作函数
class Staffoperation :public PersonPosition, public OperationTime {//多重继承
private:
    Worker w[101];//100为员工最多数量
    int Num;//用于表示记录时员工的序号
    int all;//用于表示系统含有多少名员工

public:
    Staffoperation() {
        Num = 1;
        all = 0;
    }
    virtual void show() {
        //Null
        //定义虚函数show,供message类调用
    }

    void add_person();//添加员工具体信息
    void searchname();//按姓名查找
    void searchnum();//按编号查找
    void delname();//按姓名删除
    void delnum();//按编号删除
    void showall();//显示人事管理系统中所有员工信息
    void delall();//清空人事管理系统中所有员工信息
    void total();//统计人事管理系统中的员工总数

    friend class message;//定义友元类

};

//message类用于重载运算符
class message:public Staffoperation,public Worker {
private:
    char name_m[32];
    char sex_m[22];
    char age_m[22];
    char num_m[22];//编号
    char address_m[502];//地址
    char tel_m[102];//手机号
    char nation_m[32];//民族
    char political_status_m[22];//政治面貌
    char marital_status_m[22];//婚姻状况
    char school_m[202];//毕业院校
    char identity_m[502];//身份证号
    char email_m[22];//邮箱
    char position_m[22];//职位
    char engage_time_m[102];//聘用时间
    char add_time_m[102];//记录时间
public:
    message(int i) {
        cout << w[i].name << endl;
        strcpy_s(name_m, strlen(w[i].name) + 1,w[i].name);
        strcpy_s(sex_m, strlen(w[i].sex) + 1, w[i].sex);
        strcpy_s(age_m, strlen(w[i].age) + 1, w[i].age);
        strcpy_s(num_m, strlen(w[i].num) + 1, w[i].num);
        strcpy_s(address_m, strlen(w[i].name) + 1, w[i].name);
        strcpy_s(tel_m, strlen(w[i].tel) + 1, w[i].tel);
        strcpy_s(nation_m, strlen(w[i].nation) + 1, w[i].nation);
        strcpy_s(political_status_m, strlen(w[i].political_status) + 1, w[i].political_status);
        strcpy_s(marital_status_m, strlen(w[i].marital_status) + 1, w[i].marital_status);
        strcpy_s(school_m, strlen(w[i].school) + 1, w[i].school);
        strcpy_s(identity_m, strlen(w[i].identity) + 1, w[i].identity);
        strcpy_s(email_m, strlen(w[i].email) + 1, w[i].email);
        strcpy_s(position_m, strlen(w[i].position) + 1, w[i].position);
        strcpy_s(engage_time_m, strlen(w[i].engage_time) + 1, w[i].engage_time);
        strcpy_s(add_time_m, strlen(w[i].add_time) + 1, w[i].add_time);
    }
    //拷贝构造函数
    message(const message& me) {
        strcpy_s(name_m, strlen(me.name_m) + 1, me.name_m);
        strcpy_s(sex_m, strlen(me.sex_m) + 1, me.sex_m);
        strcpy_s(age_m, strlen(me.age_m) + 1, me.age_m);
        strcpy_s(num_m, strlen(me.num_m) + 1, me.num_m);
        strcpy_s(address_m, strlen(me.name_m) + 1, me.name_m);
        strcpy_s(tel_m, strlen(me.tel_m) + 1, me.tel_m);
        strcpy_s(nation_m, strlen(me.nation_m) + 1, me.nation_m);
        strcpy_s(political_status_m, strlen(me.political_status_m) + 1, me.political_status_m);
        strcpy_s(marital_status_m, strlen(me.marital_status_m) + 1, me.marital_status_m);
        strcpy_s(school_m, strlen(me.school_m) + 1, me.school_m);
        strcpy_s(identity_m, strlen(me.identity_m) + 1, me.identity_m);
        strcpy_s(email_m, strlen(me.email_m) + 1, me.email_m);
        strcpy_s(position_m, strlen(me.position_m) + 1, me.position_m);
        strcpy_s(engage_time_m, strlen(me.engage_time_m) + 1, me.engage_time_m);
        strcpy_s(add_time_m, strlen(me.add_time_m) + 1, me.add_time_m);
    }
    friend ostream& operator<<(ostream& out, message& m);//重载运算符<<
    void show() {
        cout << *this;
    }
};

//重载运算符<<
ostream& operator<<(ostream& out, message& m) {
    out << " 编号:" << m.num_m << endl;
    out << " 姓名:" << m.name_m << endl;
    out << " 年龄:" << m.age_m << endl;
    out << " 性别:" << m.sex_m << endl;
    out << " 地址:" << m.address_m << endl;
    out << " 手机号:" << m.tel_m << endl;
    out << " 国家:" << m.nation_m << endl;
    out << " 政治面貌:" << m.political_status_m << endl;
    out << " 婚姻状况:" << m.marital_status_m << endl;
    out << " 毕业院校:" << m.school_m << endl;
    out << " 身份证号:" << m.identity_m << endl;
    out << " 邮箱:" << m.email_m << endl;
    out << " 聘用时间:" << m.engage_time_m << endl;
    out << " 记录时间:" << m.add_time_m << endl;
    return out;
}

//密码系统(如需使用管理系统,需要输入正确的密码,若连续三次密码错误,则系统推出)
void password()
{

    int password;
    int j = 1;
    cout << "欲使用本系统,请输入本系统的密码:" << endl;
    cin >> password;
    while (password != 888 && j < 3)
    {
        try {//应用异常出来来验证密码 
            if (password != 888)
                throw - 1; //抛出int类型异常

        }

        catch (int e) {
            cout << "您输入的密码有误,请再次输入: " << endl;
            j++;
            cin >> password;
        }

    }
    if (password != 888 && j >= 3)
    {
        cout << "您连续三次输入密码有误,系统自动退出" << endl;
        exit(0);
    }
    else {
        cout << endl << "欢迎进入人事档案管理系统\n请根据系统功能列表选择相应的功能(请输入选项对应的数字) " << endl;
    }
}

//添加员工具体信息
void Staffoperation::add_person() {
    string choice = "Y";
    char num1[20];
    while (choice == "Y" || choice == "y")
    {
        cout << "-----新建人事档案职员信息----" << endl;
        cout << "请输入职员的的编号:(1 - 100) " << endl;
        cin >> num1;
        for (int x = 0; x <= all; x++)//判断是否有重复的编号
        {
            while (strcmp(w[x].num, num1) == 0)
            {
                cout << "此职工编号已存在,请重新输入:" << endl;
                cout << "请输入职员的的编号:(1 - 100) " << endl;
                cin >> num1;
                x = 0;
            }
        }
        strcpy_s(w[Num].num, num1);
        cout << "请输入职员姓名:" << endl;
        cin >> w[Num].name;
        //cout << "请输入性别:" << endl;
        //cin >> w[Num].sex;
        //while (strcmp(w[Num].sex,"男")!=0 && strcmp(w[Num].sex, "女") != 0)
        //{
        //    cout << "您输入的性别有误,请核对后再输入: " << endl;
        //    cin >> w[Num].sex;
        //}
        //cout << "请输入年龄:" << endl;
        //cin >> w[Num].age;
        //cout << "请输入该职员的职位:(经理,管理员,员工) " << endl;
        //cin >> w[Num].position;
        //while ((string)w[Num].position != "经理" && (string)w[Num].position != "管理员" && (string)w[Num].position != "员工")
        //{
        //    cout << "您输入的职工职位有误,请核对后再输入: " << endl;
        //    cin >> w[Num].position;
        //}
        //cout << "请输入该职员的家庭地址: " << endl;
        //cin >> w[Num].address;
        //cout << "请输入该职员的民族:" << endl;
        //cin >> w[Num].nation;
        //cout << "请输入职员的政治面貌:(群众,团员,党员)" << endl;
        //cin >> w[Num].political_status;
        //while ((string)w[Num].political_status != "群众" && (string)w[Num].political_status != "团员" && (string)w[Num].political_status != "党员")
        //{
        //    cout << "您输入的职工政治面貌有误,请核对后再输入: " << endl;
        //    cin >> w[Num].political_status;
        //}
        //cout << "请输入职员的婚姻状况(未婚,已婚)" << endl;
        //cin >> w[Num].marital_status;
        //while ((string)w[Num].marital_status != "未婚" && (string)w[Num].marital_status != "已婚")
        //{
        //    cout << "您输入的职工的婚姻状况有误,请核对后再输入: " << endl;
        //    cin >> w[Num].marital_status;
        //}
        //cout << "请输入职员的毕业学校: " << endl;
        //cin >> w[Num].school;
        //cout << "请输入职员的身份证号:" << endl;
        //cin >> w[Num].identity;
        //cout << "请输入职员的手机号:" << endl;
        //cin >> w[Num].tel;
        //cout << "请输入职员的邮箱: " << endl;
        //cin >> w[Num].email;
        //cout << "请输人职员的聘用时间:" << endl;
        //cin >> w[Num].engage_time;
        //cout << "请输入此次记录的添加时间:" << endl;
        //cin >> w[Num].add_time;
        cout << "信息添加成功!" << endl;
        cout << "您还想继续添加吗?( y/n) " << endl;
        cin >> choice;
        while (choice != "Y" && choice != "y" && choice != "N" && choice != "n")
        {
            cout << "请按要求键入(y/n) " << endl;
            cin >> choice;
        }
        if (choice == "N" || choice == "n")
        {
            Num++;
            all++;
            break;
        }
        Num++;
        all++;
    }
}

//按姓名查找
void Staffoperation::searchname() {
    if (all == 0) {
        cout << "目前还没有员工计入系统,即将返回主菜单....." << endl;
        menu();
    }
    else {
        char name1[30];
        int flag = 0;//查询成功标志
        cout << "请输入你想要查询的姓名:" << endl;
        cin >> name1;
        for (int i = 0; i < 100; i++) {
            if (strcmp(name1, w[i].name) == 0) {
                cout << "查询成功!该员工的信息如下: " << endl;
                int l = i;
                message A(l);
                cout << A.name << endl;
                cout << w[i].name << endl;
                //message B(A);//调用拷贝构造函数
                //B.show();
                flag = 1;
                break;
            }
        }
        if (flag == 0) {
            cout << "查询失败!系统中没有此人信息!即将返回主菜单....." << endl;
        }
    }
}

//按编号查找
void Staffoperation::searchnum() {
    if (all == 0) {
        cout << "目前还没有员工计入系统,即将返回主菜单....." << endl;
        menu();
    }
    else {
        char num1[20];
        int flag = 0;//查询成功标志
        cout << "请输入你想要查询的编号:" << endl;
        cin >> num1;
        for (int i = 0; i < 100; i++) {
            if (strcmp(w[i].num, num1) == 0) {
                cout << "查询成功!该员工的信息如下: " << endl;
                message A(i);
                //message B(A);//调用拷贝构造函数
 /*               B.show();*/
                flag = 1;
                break;
            }
        }
        if (flag == 0) {
            cout << "查询失败!系统中没有此人信息!即将返回主菜单....." << endl;
        }
    }
}

//按姓名删除
void Staffoperation::delname() {
    if (all == 0) {
        cout << "目前还没有员工计入系统!" << endl;
    }
    char name2[30];
    cout << "请输入你想要删除的员工姓名:" << endl;
    cin >> name2;
    int flag = 0;//删除标志
    for (int i = 0; i < 100; i++) {
        if (strcmp(name2, w[i].name) == 0) {
            cout << "你想要删除的员工的信息如下: " << endl;
            message A(i);
            //message B(A);//调用拷贝构造函数
            //B.show();
            flag = 1;
            break;
        }
    }
    if (flag == 0) {
        cout << "系统中没有此人信息!" << endl;
    }
    cout << "确认删除请输入Y,返回主菜单请输入N " << endl;
    string p;
    int j = 0;
    cin >> p;
    while (1)
    {
        if (p == "y" || p == "Y")
        {
            for (int i = 0; i < 100; i++) {
                if (strcmp(name2, w[i].name) == 0) {
                    j = i;
                }
            }
            for (; j <= 99; j++) {
                w[j] = w[j + 1];
            }
            all--;
            cout << "员工信息已删除!" << endl;
            break;
        }
        else if (p == "n" || p == "N")
        {
            menu();
            break;
        }
        else
        {
            cout << "输入有误,请重新输入:";
            cin >> p;
        }
    }

}

//按编号删除
void Staffoperation::delnum() {
    if (all == 0) {
        cout << "目前还没有员工计入系统!." << endl;
    }
    char num2[20];
    cout << "请输入你想要删除的员工编号:" << endl;
    cin >> num2;
    int flag = 0;//删除标志
    for (int i = 0; i < 100; i++) {
        if (strcmp(w[i].num, num2) == 0) {
            cout << "你想要删除的员工的信息如下: " << endl;
            message A(i);
            //message B(A);//调用拷贝构造函数
            //B.show();
            flag = 1;
            break;
        }
    }
    if (flag == 0) {
        cout << "系统中没有此人信息!" << endl;
    }
    cout << "确认删除请输入Y,返回主菜单请输入N " << endl;
    string p;
    int j;
    cin >> p;
    while (1)
    {
        if (p == "y" || p == "Y")
        {
            for (int i = 0; i < 100; i++) {
                if (strcmp(w[i].num, num2) == 0) {
                    j = i;
                }
            }
            for (; j <= 99; j++) {
                w[j] = w[j + 1];
            }
            all--;
            cout << "员工信息已删除!" << endl;
            break;
        }
        else if (p == "n" || p == "N")
        {
            menu();
            break;
        }
        else
        {
            cout << "输入有误,请重新输入:";
            cin >> p;
        }
    }

}

//显示人事管理系统中所有员工信息
void Staffoperation::showall() {
    if (all == 0) {
        cout << "信息库为空,请添加职员!" << endl;
        menu();
    }
    else {
        cout << "所有员工的信息如下: " << endl;
        for (int i = 1; i <= all; i++) {
            message A(i);
            //message B(A);//调用拷贝构造函数
            //B.show();
        }
        ///////////////////////////////////////////
    }
}

//清空人事管理系统中所有员工信息
void Staffoperation::delall() {
    for (int x = 1; x <= all; x++) {
        w[x] = w[0];
    }
    all = 0;
    Num = 1;
    cout << "数据已清空!" << endl;
}

//统计人事管理系统中的员工总数
void Staffoperation::total() {
    cout << "系统中一共有:" << all << "名职工的信息。" << endl;
}

//定义控制函数
void manage()
{
    Staffoperation per;
    int choice, k = 1;
    menu();
    cout << "请根据系统功能列表选择相应的功能(请输入选项对应的数字)" << endl;
    //password();
    while (k)
    {
        cin >> choice;
        switch (choice)
        {
        case 1:
            per.add_person();//调用增加人事档案中职员信息函数
            break;
        case 2:
            per.searchname();//调用按姓名查找职工信息函数
            break;
        case 3:
            per.searchnum();//调用按编号查找职工信息函数
            break;
        case 4:
            per.delname();//调用按姓名删除职工信息函数
            break;
        case 5:
            per.delnum();//调用按编号删除职工信息函数
            break;
        case 6:
            per.showall();//调用显示人事档案管理系统中所有职员信息的函数
            break;
        case 7:
            per.delall();//调用清空人事档案管理系统中所有数据的函数
            break;
        case 8:
            per.total();//调用输出人事档案管理系统中职员数的函数
            break;
        case 0:
            cout << endl << "即将退出人事档案管理系统,再见!" << endl << endl;
            k = 0;
            break;
        default:
            cout << "您输入的选项有错,请重新选择! ";
        }
        if (k != 0)
        {
            menu();
            cout << "请根据系统功能列表选择相应的功能(请输入选项对应的数字)" << endl;
        }
    }
}

int main()
{
    manage();

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:13:10 | 显示全部楼层

就看看按姓名查找这个功能就可以了,其他应该问题是一样的,劳烦大佬了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 22:26:18 | 显示全部楼层
147380124 发表于 2021-6-19 22:13
就看看按姓名查找这个功能就可以了,其他应该问题是一样的,劳烦大佬了

给个输入样例,输入什么会出现你图片上的错误?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:28:02 | 显示全部楼层
人造人 发表于 2021-6-19 22:26
给个输入样例,输入什么会出现你图片上的错误?

比如说输入张三,message内的那个就会输出乱码,是烫烫烫,而查询姓名那个成员函数里面输出就不会有乱码,就是张三
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-19 22:47:49 | 显示全部楼层
147380124 发表于 2021-6-19 22:28
比如说输入张三,message内的那个就会输出乱码,是烫烫烫,而查询姓名那个成员函数里面输出就不会有乱码 ...

先选 1 进行添加?
选了 1,然后呢?编号也选 1 ?
我要 你输入的每一步,直到出现错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-6-19 22:49:55 | 显示全部楼层
人造人 发表于 2021-6-19 22:47
先选 1 进行添加?
选了 1,然后呢?编号也选 1 ?
我要 你输入的每一步,直到出现错误

先按1添加,然后输入编号1,姓名张三,然后在输入n退出,再选择按照姓名查询,在输入张三,然后就报错了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-14 14:45

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表