Range-for-loops and std::vectorlt;boolgt;(Range-for-loops 和 std::vectorbool;)
问题描述
为什么这段代码有效
std::vector<int> intVector(10);
for(auto& i : intVector)
std::cout << i;
这不是吗?
std::vector<bool> boolVector(10);
for(auto& i : boolVector)
std::cout << i;
在后一种情况下,我得到一个错误
In the latter case, I get an error
错误:从std::_Bit_iterator::reference {aka std::_Bit_reference}"类型的右值对std::_Bit_reference&"类型的非常量引用进行无效初始化
error: invalid initialization of non-const reference of type ‘std::_Bit_reference&’ from an rvalue of type ‘std::_Bit_iterator::reference {aka std::_Bit_reference}’
for(auto& i : boolVector)
推荐答案
因为 std::vector<bool> 不是容器 !
Because std::vector<bool> is not a container !
std::vector<T> 的迭代器通常取消对 T& 的引用,您可以将其绑定到自己的 auto&.
std::vector<T>'s iterators usually dereference to a T&, which you can bind to your own auto&.
std::vector<bool> 将其 bool 打包在整数中,因此您需要代理在访问它们时进行位掩码.因此,它的迭代器返回一个 Proxy.
并且由于返回的 Proxy 是一个纯右值(一个临时的),它不能绑定到一个左值引用,例如 auto&.
std::vector<bool>, however, packs its bools together inside integers, so you need a proxy to do the bit-masking when accessing them. Thus, its iterators return a Proxy.
And since the returned Proxy is an prvalue (a temporary), it cannot bind to an lvalue reference such as auto&.
解决方案:使用 auto&&,如果给定一个左值引用,它将正确折叠成一个左值引用,或者如果给定一个代理,则绑定并保持临时活动.
The solution : use auto&&, which will correctly collapse into an lvalue reference if given one, or bind and maintain the temporary alive if it's given a proxy.
这篇关于Range-for-loops 和 std::vector<bool>;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Range-for-loops 和 std::vector<bool>;
基础教程推荐
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 初始化列表*参数*评估顺序 2021-01-01
