3

谁能告诉我如何使以下伪代码与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) {}
};
4

1 回答 1

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) {}

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

于 2011-05-17T10:38:30.057 回答