那是,
[=,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”所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)