C++STL_max


template<class T> T max(T a,T b) { return a>b?a:b; }
原文地址:https://www.cnblogs.com/orangebook/p/3344280.html