c – lambda表达式的变体模板

前端之家收集整理的这篇文章主要介绍了c – lambda表达式的变体模板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用g做什么正确的方法
template < typename F >
void g (F f);

template < typename ... A >
void h (A ... a);

template < typename ... A >
void f (A ... a) {
  g ([&a] () { h (a...); }); // g++-4.6: error: parameter packs not expanded with »...«
}
@H_301_4@

解决方法

我想你也需要在捕获列表中扩展包,如下所示:
template < typename ... A >
void f (A ... a) {
  g ([&,a...] () { h (a...); }); 
}

以下是C 0x最终委员会草案的相关文本,第5.1.2.23节:

A capture followed by an ellipsis is a
pack expansion (14.5.3). [ Example:

06001

— end example ]

@H_301_4@ @H_301_4@ 原文链接:https://www.f2er.com/c/113545.html

猜你在找的C&C++相关文章