C++ Template learning notes
1. Function TemplatetemplateT1 max( T2& a, T3& b){ ... }// explicit call::max(1, 2.3);//or::max(1, 2.3); // return type is int // string literals as argumenttemplate void ref (T const& x)