微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

关于默认捕获模式的限制和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.jb51.cc/c/113042.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐