📜  可变参数模板构造函数比复制构造函数匹配更好 - C++ 代码示例
📅  最后修改于: 2022-03-11 14:44:50.886000             🧑  作者: Mango
代码示例1
// C++11 way
template struct typelist;
template ,
typelist::type...>
>::value
>::type
>
Bar(Args&&... args)
{
}