错误LNK2019:函数_main visual c++中引用了未解析的外部符号

error LNK2019: unresolved external symbol referenced in function _main visual c++

本文关键字:符号 外部 引用 函数 LNK2019 main c++ visual 错误      更新时间:2023-10-16

有人知道如何解决这个问题吗?我已经在线查看并更改了visual C++的设置,但它仍然不起作用。

class store
{
public:
    int MainMenu();
    store();
private:
    int main;
};
class customer:store
{
public:
    int CustomerMenu();
    customer();
private:
    int cmenu;
};
class employee:store
{
public:
    int EmployeeMenu();
    employee();
private:
    int emenu;
};
int main()
{
    int main;
    store a;
    customer b;
employee c;
a.MainMenu();
if(main = 1)
{
    c.EmployeeMenu();
}
else if(main = 2)
{
    b.CustomerMenu();
}
else
{
    exit(EXIT_SUCCESS);
}
}
int MainMenu()
{
    int main;
cout << "Choose an option: " << endl;
cout << " 1. Administration menu" << endl;
cout << " 2. Customer menu" << endl;
cout << " 3. Exit the program" << endl;
cin >> main;
return main;
}
int CustomerMenu()
{
int cmenu;
cout << " 1. Search Video" << endl;
cout << " 2. View Video Titles" << endl;
cout << " 3. Rent Video" << endl;
cout << " 4. Exit to the Main Menu" << endl;
cout << " 5. Exit the program" << endl;
cin >> cmenu;
return cmenu;
}
int EmployeeMenu()
{
int emenu;
    cout << " 1.  Store Information menu" << endl;
    cout << " 2.  Merchandise Information menu" << endl;
    cout << " 3.  Category Information menu" << endl;
    cout << " 4.  Customer Information menu" << endl;
    cout << " 5.  Employee Information menu" << endl;
    cout << " 6.  Rent a Video" << endl;
    cout << " 7.  Restock Video" << endl;
    cout << " 8.  Sales menu" << endl;
    cout << " 9.  Exit to Main Menu" << endl;
    cout << " 10. Exit the program" << endl;
cin >> emenu;
return emenu;
}
store::store()
{
main = 0;
}
customer::customer()
{
cmenu = 0;
}
employee::employee()
{
emenu = 0;
}

它给了我:

Store.obj : error LNK2019: unresolved external symbol "public: int __thiscall customer::CustomerMenu(void)" (?CustomerMenu@customer@@QAEHXZ) referenced in function _main
1>Store.obj : error LNK2019: unresolved external symbol "public: int __thiscall employee::EmployeeMenu(void)" (?EmployeeMenu@employee@@QAEHXZ) referenced in function _main
1>Store.obj : error LNK2019: unresolved external symbol "public: int __thiscall store::MainMenu(void)" (?MainMenu@store@@QAEHXZ) referenced in function _main

您将CustomerMenu()EmployeeMenu()实现为普通函数,而不是类成员。实施应:;

int customer::CustomerMenu()
{
...
int employee::EmployeeMenu()
{
...

您的成员函数实现需要正确定义。例如:

int CustomerMenu()

应为:

int  customer::CustomerMenu(void)

等等。

if(main = 1)
{   //^^should be ==, same as the one below
    c.EmployeeMenu();
}
else if(main = 2)
{
    b.CustomerMenu();
}

应使用范围解析运算符定义成员功能:

int CustomerMenu()

应该是:

int Customer::ustomerMenu()

次要点:

class employee:store

在这里,您使用了private inheritance,您真的需要考虑是否需要它。

相关文章: