链接错误LNK2001(Linker error LNK2001)

2019-07-04 06:26发布

当我试图创建一个对象我在Visual Studio中得到了LNK2001错误,它与构造我想既然改变构造改变错误的问题。

Customer bob("Bob", "25 Bob Lane", "01bob82", "M", "bob/bob/bob");

此行给出了这样的错误:

Error   1   error LNK2001: unresolved external symbol "public: __thiscall
Customer::Customer(class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class 
std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> >)" (??0Customer@@QAE@V?$basic_string@DU?$char_traits@D@std@@V?
$allocator@D@2@@std@@0000@Z)    D:\Dropbox\Work\C++\C++ Assignment\C++ 
Assignment\driver.obj

客户类,它包含了构造函数:

#pragma once
#include "l_list.h"
#include "Account.h"
#include <string>

using namespace std;

class Customer
{
private:
    l_list<Account> accounts;
    string name;
    string address;
    string telNo;
    string sex;
    string dob;

public:
    Customer(string name, string address, string telNo, string sex, string dob)
    {
        Customer::name = name;
        Customer::address = address;
        Customer::telNo = telNo;
        Customer::sex = sex;
        Customer::dob = dob;
    }

    void createAccount()
    {
        cout << "What type of account?";

    }

};

Answer 1:

如果你已经那么语法错误链接你的代码是OK,否则你会得到编译器错误。

你应该检查(或增加)是在使用Customer类项目的依赖属性路径。 在VS,你可以找到它“项目属性 - >配置属性 - >连接器 - >输入 - >附加依赖”。 似乎连接器找不到与客户实现外部库。 你可以成功编译工程事业的所有的#include是正确的,但你不能连接上,因为依赖的只是阶段。



Answer 2:

那里的东西看起来不错给我。 检查其他的东西,如确保您的命名空间是正确的,或者有没有其他/冲突的“客户”的定义等尝试注释掉大段代码或减少你的代码到一个小的测试案例。



Answer 3:

我遇到相同问题。 这是我的固定:

使用#include<string>代替#include "string.h"文件调用Customer构造。



Answer 4:

我有同样的错误。 原来,一个必要的功能被注释掉。 当我注释掉这个函数,错误消失。



文章来源: Linker error LNK2001