我试图运行一个main.cpp,它可以访问3个不同的类。由于某种原因,我收到了一个未解决的外部符号错误。从我在网上看到的内容来看,它显然是某处的链接错误,但我找不到它。我在下面列出了错误,但是其中包含很多信息,我无法确切知道其含义。

错误:main.obj:-1:错误:LNK2001:无法解析的外部符号“公共:__thiscall AtpReader :: AtpReader(class std :: basic_string,class std :: allocator>)”(?? 0AtpReader @@ QAE @ V? $ basic_string @ DU?$ char_traits @ D @ std @@ V?$ allocator @ D @ 2 @@ std @@@ Z)

我的代码是:

main.cpp:

#include <iostream>
#include "atlasobject.h"
#include "atp.h"
#include "atpreader.h"
using namespace std;
int main()
{
    AtpReader reader("E:/doc.txt");
    return 0;
}


AtpReader.h:

#ifndef ATPREADER_H
#define ATPREADER_H
#include "atp.h"

class AtpReader
{
public:
    AtpReader();
    AtpReader(string filename);

    void atpReadHeader();
    void atpRead();
    string decryptLine(string line);

    ATP readerATP;

private:
    string file;
};
#endif // ATPREADER_H


atp.h:

#ifndef ATP_H
#define ATP_H
#include "atlasobject.h"
#include "vector"

struct Image{
    string Dim;
    string Vox;
    string Ori;
    char* data;
};

class ATP
{
public:
    ATP();
    vector<AtlasObject> listOfMaps;

private:
    Image referenceImage;
};
#endif // ATP_H


和AtlasObject.h:

#ifndef ATLASOBJECT_H
#define ATLASOBJECT_H
#include <string>

using namespace std;
class AtlasObject{

public:
    //virtual void create();
    AtlasObject();

    void set_uid(string id);
    void set_label(string l);
    void set_offset(string o);
    void set_mapInfo(string info);
    void set_data(char* inData);
    void set_isEncrypted(int encrypted);

    string get_uid();
    string get_label();
    string get_offset();
    string get_mapInfo();
    char* get_data();
    int get_isEncrypted();

protected:
    string uid;
    string label;
    string offset;
    string mapInfo;
    char *data;
    int isEncrypted;
};
#endif // ATLASOBJECT_H


我的AtpReader.cpp是:

#include "atpreader.h"

#include <iostream>
#include <fstream>
#include <stdint.h>
#include <sstream>

AtpReader::AtpReader()
{
    printf("AtpReader()\n");
}

AtpReader::AtpReader(string filename)
{
    printf("AtpReader(%s)\n",filename.c_str());
}

最佳答案

我看到您没有在AtpReader.cpp中包含AtpReader.h,但是您在复制/粘贴并将其插入此处时可能只是错过了它,因为如果您未真正包含它,则错误将有所不同。另外,我看到您在main.cpp中同时包含了两个“ atlasobject.h”
和“ atp.h”,您实际上并不需要它。

稍后编辑:您的问题出在atp.h ...构造函数已声明但从未定义。这样做:ATP(){};

10-06 04:09