如果我想制作一个模板类,并且根据模板参数的 typeid 执行不同的操作,那么我该如何编码呢?
例如,我有以下模板类,我想在其中初始化成员字段数据,具体取决于它是 int 还是 string。
#include <string>
template <class T>
class A
{
private:
T data;
public:
A();
};
// Implementation of constructor
template <class T>
A<T>::A()
{
if (typeid(T) == typeid(int))
{
data = 1;
}
else if (typeid(T) == typeid(std::string))
{
data = "one";
}
else
{
throw runtime_error("Choose type int or string");
}
}
但是,此代码无法使用以下主文件进行编译。
#include "stdafx.h"
#include "A.h"
#include <string>
int _tmain(int argc, _TCHAR* argv[])
{
A<int> one;
return 0;
}
错误是:error C2440: '=' : cannot convert from 'const char [2]' to 'int',这意味着代码实际上正在检查 else-if 语句中的 int,即使它永远无法到达代码的那部分。
接下来,按照这个例子(根据模板变量类型执行不同的方法),我尝试了下面的 Ah 文件,但是我得到了几个链接器错误,提到 A(void) 已经在 A.obj 中定义。
#include <string>
template <class T>
class A
{
private:
T data;
public:
A();
~A();
};
// Implementation of constructor
template <>
A<int>::A()
{
data = 1;
}
template <>
A<std::string>::A()
{
data = "one";
}
有人知道如何启动并运行此代码吗?我还意识到在模板类中使用这样的 if-else 语句可能会削弱模板的力量。有没有更好的编码方法?
编辑:与 Torsten(下)讨论后,我现在有以下 Ah 文件:
#pragma once
#include <string>
// Class definition
template <class T>
class A
{
public:
A();
~A();
private:
T data;
};
// Implementation of initialization
template < class T >
struct initial_data
{
static T data() { throw runtime_error("Choose type int or string"); }
};
template <>
struct initial_data< int >
{
static int data() { return 1; }
};
template <>
struct initial_data< std::string >
{
static std::string data() { return "one"; }
};
// Definition of constructor
template <class T>
A<T>::A()
: data( initial_data< T >::data() )
{
}
以及以下主要内容:
#include "stdafx.h"
#include "A.h"
#include <string>
int _tmain(int argc, _TCHAR* argv[])
{
A<int> ione;
return 0;
}
我现在得到的链接器错误是:Test template 4.obj : error LNK2019: unresolved external symbol "public: __thiscall A::~A(void)" (??1?$A@H@@QAE@XZ) referenced in函数_wmain