template < typename T > T max( T a, T b ) { return a < b ? b : a; } 这个max 函数就是一个模板函数,它可以传入一个“类型”的参数,以便实现任意类型求最大值的效果 ...
確定! 回上一頁