c – GCC在lambda中对我的静态变量做什么?

前端之家收集整理的这篇文章主要介绍了c – GCC在lambda中对我的静态变量做什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用GCC 6.1,以下程序:
#include <string>
#include <vector>
#include <iterator>
#include <algorithm>
#include <iostream>

int main()
{
    static const std::string foo {"foo"};
    std::vector<std::string> bars {{""}};
    std::cout << "foo outside: " << foo << std::endl;
    std::for_each(std::cbegin(bars),std::cend(bars),[] (const auto& bar) {
        std::cout << "foo inside: " << foo << std::endl;
    });
}

打印:

foo outside: foo
foo inside:

Live On Coliru

这是怎么回事?

解决方法

这个bug已经作为Bug 69078提交,但尚未确认.

见:https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69078

原文链接:https://www.f2er.com/c/115004.html

猜你在找的C&C++相关文章