关于默认捕获模式的限制和C lambda表达式中的“this”

前端之家收集整理的这篇文章主要介绍了关于默认捕获模式的限制和C lambda表达式中的“this”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道为什么= capture-default模式禁止在C lambda表达式的捕获列表中.

那是,

[=,this]{ };  // error
[&,this]{ };  // OK

这由C 11 5.1.2 / 8规定.

  • If a lambda-capture includes a capture-default that is &,the
    identifiers in the lambda-capture shall not be preceded by &.
  • If a lambda-capture includes a capture-default that is =,the
    lambda-capture shall not contain this and each identifier it contains
    shall be preceded by &.

问:这个规则有什么理由或背景故事吗?

解决方法

这只能通过复制而不是通过引用捕获.即使您只指定[&],如果使用odr,则可以通过复制隐式捕获这一点.因此,[=,this]是一个错误,因为=已经隐含地通过副本捕获这个,而&在[& this]中,通过引用表示捕获,并不隐含地捕获此内容(除非是使用odr)
原文链接:https://www.f2er.com/c/113042.html

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