我知道在标头中声明模板类方法并在源文件中定义它的语法如下:
我的班级.h
template <typename T>
class MyClass {
public:
void method(T input);
private:
T privVar;
};
我的类.cpp
template <typename T>
void MyClass<T>::method(T input) {
privVar = input;
}
但是,如果该方法也是一个模板呢?我正在向basic_string
类中添加方法,我想知道如何编写函数的实现。
我的字符串.h
template <class _Elem = TCHAR,
class _Traits = std::char_traits<_Elem>,
class _Ax = std::allocator<_Elem>>
class String
: public std::basic_string<_Elem, _Traits, _Ax> {
private:
// Types for the conversion operators.
typedef _Elem* _StrTy;
typedef const _Elem* _ConstStrTy;
//...
public:
// Conversion operators so 'String' can easily be
// assigned to a C-String without calling 'c_str()'.
operator _StrTy() const {
return const_cast<_StrTy>(this->c_str());
}
operator _ConstStrTy() const {
return this->c_str();
}
// ... Constructors ...
/*------------ Additional Methods ------------*/
//! Converts a value of the given type to a string.
template <class _ValTy> static String ConvertFrom(_ValTy val);
//! Converts a string to the given type.
template <class _ValTy> static _ValTy ConvertTo(const String& str);
template <class _ValTy> _ValTy ConvertTo(void) const;
//! Checks if a string is empty or is whitespace.
static bool IsNullOrSpace(const String& str);
bool IsNullOrSpace(void) const;
//! Converts a string to all upper-case.
static String ToUpper(String str);
void ToUpper(void);
// ...
};
我该如何实施template <class _ValTy> static String ConvertFrom(_ValTy val);
?因为现在我不仅需要指定类模板,还需要指定函数模板。我打赌我要写的代码是无效的,但它应该显示我想要完成的事情:
我的字符串.cpp
template <class _Elem, class _Traits, class _Ax>
template <class _ValTy>
String<_Elem, _Traits, _Ax> String<_Elem, _Traits, _Ax>::ConvertFrom(_ValTy val) {
// Convert value to String and return it...
}
我对模板一点也不先进。我不仅非常怀疑上述内容是否有效,而且看起来写起来很麻烦,而且可读性也不是很好。我将如何实现模板方法以及返回自己的类类型的静态模板方法?因为我不想在标题中定义它们。