首页 > 编程 > C++ > 正文

关于C++函数模版的实现讲解

2020-05-23 13:24:02
字体:
来源:转载
供稿:网友

若一个程序的功能是对某种特定的数据类型进行处理,则将所处理的数据类型说明为参数,那么就可以把这个程序改写成为模版,模版可以让程序对任何其他数据类型进行同样方式的处理。

本节主要是说一下C++的函数模版,函数模版的定义一般形式是:

template <类型形式参数表> 返回类型  函数名(形参){  //函数实现}

看一个实例:

#include <cstdio>#include <iostream>using namespace std;//函数模板template <class T>T max(T & a, T & b)  { return a > b ? a : b;}int main(void){ int x, y; x = 1; y = 4; cout << "max = " << max<int>(x, y) << endl; cout << "max = " << max<double>(1.234, 5.567) << endl; cout << "max = " << max(21.234f, 51.567f) << endl; return 0;}

运行结果:

max = 1 
max  = 5.567 
max  = 51.567

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对VEVB武林网的支持。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表