OFFICE/프로그램

템플릿을 이용한 함수 만들기.

gandus 2011. 9. 30. 15:20
template<class T>
inline const T& max(const T& a,const T& b)
{ return a > b ? a: b; }