码迷,mamicode.com
首页 > 其他好文 > 详细

函数模板的用法

时间:2014-12-11 00:04:14      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   on   

bubuko.com,布布扣
 1 #include <iostream>
 2 
 3 using namespace std;
 4 
 5 
 6 template <class t1,class t2>
 7 t1 ff(t1 a,t1 b,t2 c)
 8 {
 9     cout<<a+b<< <<c<<endl;
10     return 0;
11 }
12 
13 int main()
14 {
15     ff(1,2,3.1);
16     ff(1.2,2.0,a);
17     return 0;
18 }
View Code

 

函数模板的用法

标签:style   blog   http   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/jiu0821/p/4156539.html

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