码迷,mamicode.com
首页 > 编程语言 > 详细

template stuff in C++

时间:2014-11-24 06:27:06      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

1. Template function 

template <class T> // a template prefix
T 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++

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/RuiYan/p/4117861.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!