C++STL_max】的更多相关文章

template<class T> T max(T a,T b) { return a>b?a:b; }…