在C ++ 0x中已更改的AFAIK。
我想这只是一个疏忽(考虑到通过将函数放置为static
类的成员,您总是可以使用更详细的代码来获得部分专业化效果)。
您可能会查找相关的DR(缺陷报告)(如果有)。
编辑:检查这一点,我发现其他人也相信这一点,但是没有人能够在标准草案中找到任何这样的支持。该SO线程似乎表明C ++ 0x不支持功能模板的部分专业化。
编辑2:只是我的意思是“将函数作为static
类的成员放置”的一个示例:
#include <iostream>
using namespace std;
void say( char const s[] ) { std::cout << s << std::endl; }
namespace detail {
template< class T, class U >
struct F {
static void impl() { say( "1. primary template" ); }
};
template<>
struct F<int, char> {
static void impl() { say( "2. <int, char> explicit specialization" ); }
};
template< class T >
struct F< char, T > {
static void impl() { say( "3. <char, T> partial specialization" ); }
};
template< class T >
struct F< T, int > {
static void impl() { say( "4. <T, int> partial specialization" ); }
};
}
template< class T, class U >
void f() { detail::F<T, U>::impl(); }
int main() {
f<char const*, double>();
f<int, char>();
f<char, double>();
f<double, int>();
}
template<typename T, typename U> void f(T t, U u) {}
同样template<> void f(int t, char u) {}
是允许的。