我有一个基于模板的类[Allotter.h&Allotter.cpp]:

template <typename allotType> class Allotter {
public:
 Allotter();
 quint32 getAllotment(allotType*);
 bool removeAllotment(quint32, int auto_destruct = 0);

private:
 QVector<QPair<quint32, allotType*>> indexReg;
 int init_topIndex;
};

其用法显示为[ActiveListener.h&ActiveListener.cpp]:
class ActiveListener: public QObject {
 Q_OBJECT

public:
 ActiveListener();

private slots:
    void processConnections();
    void readFromSocket(int);

private:
 QTcpServer* rootServer;
 QSignalMapper* signalGate;
 Allotter<QTcpSocket> TcpAllotter;
};

我没有显示完整的定义,因为这并不重要。问题是当我编译时,所有文件都正确编译。这些文件在VC++项目中。早些时候,当我没有对Allotter使用基于模板的方法时,一切都在编译和链接中。但是现在,我得到了这个错误:
1>ActiveListener.obj : error LNK2019: unresolved external symbol "public: __thiscall Allotter<class QTcpSocket>::Allotter<class QTcpSocket>(void)" (??0?$Allotter@VQTcpSocket@@@@QAE@XZ) referenced in function "public: __thiscall ActiveListener::ActiveListener(void)" (??0ActiveListener@@QAE@XZ)
1>ActiveListener.obj : error LNK2019: unresolved external symbol "public: unsigned int __thiscall Allotter<class QTcpSocket>::getAllotment(class QTcpSocket *)" (?getAllotment@?$Allotter@VQTcpSocket@@@@QAEIPAVQTcpSocket@@@Z) referenced in function "private: void __thiscall ActiveListener::processConnections(void)" (?processConnections@ActiveListener@@AAEXXZ)

令人惊讶的是,构造函数ActiveListener::ActiveListener()根本没有对Allotter<QTcpSocket>::Allotter()进行任何引用。但是,第二引用确实存在。但是我不明白为什么链接器无法解析此外部符号。

错误出现之前的生成输出是:
1>Moc'ing ActiveListener.h...
1>Compiling...
1>stdafx.cpp
1>Compiling...
1>ActiveListener.cpp
1>Allotter.cpp
1>moc_ActiveListener.cpp
1>main.cpp
1>Generating Code...
1>Linking...

我不知道其中的任何一个是否相关,主要是因为所有这些以前都可以很好地工作。只是在我使用模板后才引起问题。
任何帮助将不胜感激。非常感谢。

最佳答案

您无法将模板分为.h和.cpp文件-您需要将模板的完整代码放入.h文件中。

10-07 20:21