首页 > 代码库 > C++中函数模板template的使用
C++中函数模板template的使用
下面以一个简单程序演示一下函数模板的使用:
1 #include<iostream> 2 using namespace std; 3 template<class Type> 4 Type Abc(Type a,Type b,Type c) 5 { 6 return a+b+c; 7 } 8 int main() 9 {10 int a=1,b=2,c=3;11 cout<<"a= "<<a<<",b= "<<b<<",c= "<<c<<endl;12 cout<<"使用函数模板的结果为:\n";13 cout<<Abc(a,b,c)<<endl;14 float f=4,d=0.6,e=2.3;15 cout<<"f= "<<f<<",d= "<<d<<",e= "<<e<<endl;16 cout<<"使用函数模板的结果为:\n";17 cout<<Abc(f,d,e)<<endl;18 return 0;19 }
调试运行结果:
C++中函数模板template的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。