为什么基于范围的for-loop中的结构化绑定只是一个副本而不是一个引用?

时间:2017-08-27 18:09:55

标签: c++ for-loop visual-c++ c++17 structured-bindings

我有以下代码:

#include "stdafx.h"
#include <unordered_map>
#include <cassert>
int main()
{
    struct Foo { int a; };
    std::unordered_map<int, Foo> foos{ { 0, { 3 } }, { 1, { 4 } } };
    for (auto &[i, foo] : foos)
    {
        foo.a = 6; //doesn't change foos[i].a
        assert(&foo.a == &foos[i].a); //does not pass
    }

    auto &[i, foo] = *foos.begin();
    foo.a = 7; //changes foo[0].a
    assert(&foo.a == &foos[0].a); //passes
}

我的问题:

为什么第一个断言语句在第二个传递时没有通过? 为什么我无法在基于范围的for循环中更改foo地图中foos的值?

编译器: MSVS ++ 17 Visual studio 15.3.2

编辑:如果将复制粘贴到visual studio项目中,代码现在会编译。

1 个答案:

答案 0 :(得分:5)

我在VS中发布了bugreport,现在正在接受调查。