什么是`auto &&e` 在基于范围的 for 循环中做什么?

What does `auto amp;amp; e` do in range-based for-loops?(什么是`auto amp;amp;e` 在基于范围的 for 循环中做什么?)
本文介绍了什么是`auto &&e` 在基于范围的 for 循环中做什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

假设我在使用基于范围的循环编程时的当前规则说

Assuming my current rule when programming with range-based loops says

尽可能使用 for(auto const &e :...)for(auto &e:...) 而不是 for(自动 a: ...).

Use for(auto const &e :...) or for(auto &e:...) when possible over for(auto a: ...).

我以我自己的经验和这个问题为例.

I base this on my own experience and this question for example.

但是在阅读了新的 简洁的循环 我想知道,我不应该用 && 替换我的规则中的 & 吗?正如此处所写,这看起来像Meyers 的通用参考文献.

But after reading about the new terse for loops I wonder, should I not replace my & in my rule with &&? As written here this looks like the Meyers' Universal References.

所以,我问自己,我的新规则是否应该是

So, I ask myself, should my new rule either be

尽可能使用 for(auto const &&e :...)for(auto &&e:...) ...

Use for(auto const &&e :...) or for(auto &&e:...) when possible ...

或者这并不总是有效,因此应该是相当复杂的

or does that not always work and therefore should rather be the quite complicated one

检查 for(auto const &&e:...)for(auto &&e:...) 是否可行,然后考虑 for(auto const &e :...)for(auto &e:...),并且仅在需要时才使用引用.

Check if for(auto const &&e :...) or for(auto &&e:...) is possible, then consider for(auto const &e :...) or for(auto &e:...), and only when needed do not use references.

推荐答案

Howard Hinnant 此处.

When and if you should use auto&& in for loops has been explained very nicely by Howard Hinnant here.

这就留下了x

auto &&x = ...expr...

实际上是.并且像有函数模板定义一样处理

actually is. And it is handled as if there there were a function template definition

template <class U> void f(const U& u);

并且x的类型是按照与u[§7.1.6.4.(7)]相同的规则推导出来的.

and the type of x is deduced by the same rules as u [§7.1.6.4.(7)].

这意味着它作为 RValue 参考处理,而是作为通用/转发参考"处理.--参考折叠规则"申请.

This means it is not handled as a RValue Reference, but as a "Universal/Forwarding Reference" -- the "Reference Collapsing Rules" apply.

这也适用于

const auto &&x = ...expr...

作为 §7.1.6.4.(7) 中的例子,至少对于 const auto &x.

as the example in §7.1.6.4.(7) states, at least for const auto &x.

但是,正如 PiotrS 在问题评论中所说,任何限定词都会使 URef-ness 无效:

But, as PiotrS says in the questions comments, any qualifiers nullifies the URef-ness:

不,因为template中的T都没有.void f(const T&&) 是转发引用,const auto&& 也不是.T&& 出现在参数声明中的事实并不意味着它是转发引用.只有没有像 constvolatile 这样的限定符的纯 T&& 是转发引用,这意味着它必须是 template;void f(T&&)auto&&,从不const T&&const auto&&代码>

no, because neither T in template<class T> void f(const T&&) is a forwarding reference, nor const auto&& is. The fact that T&& occurs in parameter declaration does not imply it is forwarding reference. Only pure T&& with no qualifiers like const or volatile is forwarding reference, meaning it has to be template<class T> void f(T&&) or auto&&, and never const T&& or const auto&&

这篇关于什么是`auto &amp;&amp;e` 在基于范围的 for 循环中做什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Bring window to front -gt; raise(),show(),activateWindow() don’t work(把窗户放在前面 -raise(),show(),activateWindow() 不起作用)
How to get a list video capture devices NAMES (web cameras) using Qt (crossplatform)? (C++)(如何使用 Qt(跨平台)获取列表视频捕获设备名称(网络摄像机)?(C++))
How to compile Qt as static(如何将 Qt 编译为静态)
C++ over Qt : Controlling transparency of Labels and Buttons(C++ over Qt:控制标签和按钮的透明度)
How to know when a new USB storage device is connected in Qt?(Qt如何知道新的USB存储设备何时连接?)
What is an event loop in Qt?(Qt 中的事件循环是什么?)