看看两端代码,区别重要在:
一个是:inline int const& max申明在template <typename T>
inline T const& max之前。
// maximum of two int values
inline int const& max (int const& a, int const& b)
{
return a<b?b:a;
}
// maximum of two values of any type
template <typename T>
inline T const& max (T const& a, T const& b)
{
return a<b?b:a;
}
// maximum of three values of any type
template <typename T>
inline T const& max (T const& a, T const& b, T const& c)
{
return max (max(a,b), c);
}
一个是:inline int const& max申明在template <typename T>
inline T const& max之后。
// maximum of two values of any type
template <typename T>
inline T const& max (T const& a, T const& b)
{
return a<b?b:a;
}
// maximum of three values of any type
template <typename T>
inline T const& max (T const& a, T const& b, T const& c)
{
return max (max(a,b), c);
}
// maximum of two int values
inline int const& max (int const& a, int const& b)
{
return a<b?b:a;
}
调用程序:
int main( )
{
//当然这里本来就写得不好,要先显式申明写局部变量......
// 看你了解多少,讨论讨论两种执行可能的执行路径,即:FunctionTemplate的调用路径!!!
::max( 4, 10 ,15 );
}