我有以下代码(也可在http://ideone.com/6ozZrs获得):
#include <iostream>
template<class T>
class MyClass{
public:
inline MyClass(const T &t);
template<class C>
void MyUberFunction(const C &c)
{
std::cout<<"My t: "<<m_t<<std::endl;
std::cout<<"Do uber things with: "<<&c<<std::endl;
}
private:
T m_t;
};
template<class T>
MyClass<T>::MyClass(const T &t):
m_t(t)
{
}
int main(int argc, char *argv[])
{
MyClass<int> myInstance(1337);
myInstance.MyUberFunction("Another type");
return 0;
}
MyUberFunction 方法采用一组与其类不同的模板参数。如何拆分它的声明和定义(就像我对类构造函数所做的那样)?