5

从一些关于模板专业化的幻灯片:

#include <iostream>

using namespace std;

template<class X> 
X& min(X& a, X& b)
{
    return a > b ? b : a;
}

int& min(int& a, int & b)
{
    // rewrite of the function in the case of int:
    cout << "int explicit function\n";
    return a > b ? b : a;
}

/* 
new syntax – the more appropriate way:
template<>
int& min<int>(int& a, int& b)
{
    cout << "int explicit function\n";
    return a > b ? b : a;
}
*/

为什么第二种方式更“合适”?

4

1 回答 1

1

重载适用于大多数情况,AFAIK 是建议的基线方法。(请参阅juanchopanza建议的 GOTW )

如果有人明确要求模板,调用min<int>(x, y). 在这种情况下,忽略重载,只考虑模板(基本或专用)。

于 2013-06-27T13:28:10.390 回答