首页 > 代码库 > template stuff in C++
template stuff in C++
1. Template function
template <class T> // a template prefixT func(T a, T b, T c){ // return value is T type, 3 T-typed formal parameters return a + b + c;}
We could also specify different types here:
template <class T1, class T2, class T3>T1 func(const T1& a, const T2& b, const T3& c){ // passing 3 different types of formal parameter return a + b + c; // return value is T1-typed}
template stuff in C++
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。