首页 > 代码库 > 可变参数函数模板
可变参数函数模板
16.53 编写你自己版本的print函数,并打印一个、两个及五个实参来测试它,要打印的每个实参都应有不同的类型。
#include<iostream>#include<string>using namespace std;template <typename T>ostream& print(ostream &os,const T &t){ os<<t; return os;}template <typename T,typename ... Args>ostream& print(ostream &os,const T &t,const Args&...rest){ os<<t<<" , "; return print(os,rest...);}int main(){ print(cout,1,3.14,"hello");}
可变参数函数模板
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。