【C++11】可变参数模版

发布时间:2024年01月08日

定义

C++11中允许模板定义0-任意个模板参数。写法如下:
template<class …T>
…的语义为:1)声明一个参数包,参数包可以包含任意个参数 ; 2)在模板定义的右边,可以将参数包展开成一个一个独立的参数

使用场景

创建一个可以接收任意数量参数的打印函数

#include <iostream>
#include <string>
using namespace std;
template <class T>
void Print(T t)
{
	cout << t << " ";
}

template<class T, class ...Args>
void Print(T t, Args... args)
{
	cout << t<<" ";
	Print(args...);
}

int main()
{
	int a = 1;
	double b = 5.0;
	string ss = "nihao";
	Print(a, b, "nihao");
}
文章来源:https://blog.csdn.net/xiaomiqaq/article/details/135465075
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。