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

可变参数函数模板

时间:2014-09-02 00:03:23      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   log   sp   

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");
}

 

可变参数函数模板

标签:style   blog   color   os   io   ar   div   log   sp   

原文地址:http://www.cnblogs.com/wuchanming/p/3950482.html

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