以下函数模板中第二个括号 <> 的原因是什么:
template<> void doh::operator()<>(int i)
这出现在SO question中,有人建议在 之后缺少括号operator()
,但是我找不到解释。
如果它是以下形式的类型专业化(完全专业化),我理解其含义:
template< typename A > struct AA {};
template<> struct AA<int> {}; // hope this is correct, specialize for int
但是对于函数模板:
template< typename A > void f( A );
template< typename A > void f( A* ); // overload of the above for pointers
template<> void f<int>(int); // full specialization for int
这在哪里适合这个场景?:
template<> void doh::operator()<>(bool b) {}
似乎可以工作并且没有给出任何警告/错误的示例代码(使用 gcc 3.3.3):
#include <iostream>
using namespace std;
struct doh
{
void operator()(bool b)
{
cout << "operator()(bool b)" << endl;
}
template< typename T > void operator()(T t)
{
cout << "template <typename T> void operator()(T t)" << endl;
}
};
// note can't specialize inline, have to declare outside of the class body
template<> void doh::operator()(int i)
{
cout << "template <> void operator()(int i)" << endl;
}
template<> void doh::operator()(bool b)
{
cout << "template <> void operator()(bool b)" << endl;
}
int main()
{
doh d;
int i;
bool b;
d(b);
d(i);
}
输出:
operator()(bool b)
template <> void operator()(int i)