模板参数列表问题太少

时间:2011-05-17 10:10:10

标签: c++ templates visual-c++ gcc partial-specialization

有人可以告诉我如何使以下伪代码与 GCC4 兼容吗?我想知道它在 MSVC ...

下是如何工作的
typedef int TypeA;
typedef float TypeB;

class MyClass
{
// No base template function, only partially specialized functions...
    inline TypeA myFunction<TypeA>(int a, int b) {} //error: Too few template-parameter-lists
    template<> inline TypeB myFunction<TypeB>(int a, int b) {}
};

1 个答案:

答案 0 :(得分:5)

编码该构造的正确方法是:

typedef int TypeA;
typedef float TypeB;
class MyClass
{
    template <typename T> 
    T myFunction( int a, int b );
};
template <> 
inline TypeA MyClass::myFunction<TypeA>(int a, int b) {}
template <> 
inline TypeB MyClass::myFunction<TypeB>(int a, int b) {}

请注意,模板成员函数必须在类声明中声明 ,但必须在命名空间级别定义 之外的特殊化。