看看兩端代碼,區(qū)別重要在:
一個(gè)是: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);
}
一個(gè)是: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;
}
調(diào)用程序:
int main( )
{
//當(dāng)然這里本來(lái)就寫得不好,要先顯式申明寫局部變量......
// 看你了解多少,討論討論兩種執(zhí)行可能的執(zhí)行路徑,即:FunctionTemplate的調(diào)用路徑?。?!
::max( 4, 10 ,15 );
}