用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 »...« }
解决方法
我想你也需要在捕获列表中扩展包,如下所示:
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 ]