我知道可以做一个模板函数:
template<typename T>
void DoSomeThing(T x){}
并且可以创建一个模板类:
template<typename T>
class Object
{
public:
int x;
};
但是有可能使一个类不在模板中,然后使该类中的函数成为模板吗?即:
//I have no idea if this is right, this is just how I think it would look
class Object
{
public:
template<class T>
void DoX(){}
};
或某种程度上,类不是模板的一部分,但功能是?