C++ 0x将允许模板采用任意数量的参数.除了实现元组之外,此功能的最佳用途是什么?
类型安全的printf
在工厂方法中转发任意多个构造函数参数
具有任意基类允许放置和删除有用的策略.
通过使用可变参数模板构造函数将异构类型对象直接移动到容器中进行初始化.
有一个文字运算符,可以计算用户定义的文字的值(如"10110b").
样本到3:
templatestruct flexible : T... { flexible(): T()... { } };
样本到4:
struct my_container { templatemy_container(T&&... t) { } }; my_container c = { a, b, c };
样本到5:
templateint operator "" b() { return convert ::value; }
请参阅此示例代码:此处