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

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

概述我想知道为什么= 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 la 我想知道为什么= 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) 总结

以上是内存溢出为你收集整理的关于默认捕获模式的限制和C lambda表达式中的“this”全部内容,希望文章能够帮你解决关于默认捕获模式的限制和C lambda表达式中的“this”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1251684.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存