今天打算研究研究之前我们领导写的一段关于类模板的代码,后来发现有点坑需要记录一下。以往关于C++模板基本上都是写一个demo,然后运行通过,没有软件工程的样子,所以今天我按以往的惯例写了一个类模板,打算头文件和源文件分离然后在另外一个源文件中调用模板类。
还用之前使用的testdemo
在dll工程中添加了一个类testTemplate用来写类模板的。
类模板头文件:
#ifndef __TESTTEMPLATE_H__
#define __TESTTEMPLATE_H__
template <typename T>
class testTemplate
{
public:
testTemplate();
~testTemplate();
void ttempPrint();
private:
T m_data;
};
#endif // !__TESTTEMPLATE_H__
类模板源文件:
#include "stdafx.h"
#include "testTemplate.h"
#include <iostream>
using namespace std;
template <typename T>
testTemplate<T>::testTemplate()
{
m_data = T();
cout << typeid(m_data).name() << endl;
}
template <typename T>
testTemplate<T>::~testTemplate()
{
}
template <typename T>
void testTemplate<T>::ttempPrint()
{
cout << "template func" << endl;
}
其他函数调用类模板:
正常类函数这么调用时没什么问题的,但是类模板不同。
大体原因就是类模板在编译的时候时不会编译的,因为编译器也不知道你的模板的具体内容,所以就会报错;提醒你链接的有问题。
怎么解决这个办法了,我看其他人的博客有解决其实就是一行代码的事;
加上这行代码就可以了。
具体的可以参考
有关C++模板(template)的编译错误“error LNK2019: 无法解析的外部符号”的分析_fengyhack的博客-CSDN博客_template 无法解析的外部符号