c – gcc无法使用此捕获编译通用lambda

前端之家收集整理的这篇文章主要介绍了c – gcc无法使用此捕获编译通用lambda前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Calling `this` member function from generic lambda – clang vs gcc1
我无法使用gcc 6.1编译以下程序:
#include <iostream>
#include <string>
#include <vector>
#include <iterator>
#include <algorithm>

class Foo
{
public:
    void apply() const
    {
        std::for_each(std::cbegin(bars_),std::cend(bars_),[this] (const auto& x) { print(x); });
    }
private:
    std::vector<std::string> bars_;

    void print(const std::string& x) const
    {
        std::cout << x << ' ';
    }
};

int main()
{
    Foo foo {};
    foo.apply();
    return 0;
}

错误信息是:

error: cannot call member function 'void Foo::print(const string&) const' without object
         std::for_each(std::cbegin(bars_),[this] (const auto& x) { print(x); });
                                                                                      ^~~~~

>更改const auto& x到const std :: string& x使程序编译.
>将print(x)更改为 – > print(x)使程序编译.
>所有版本都使用Clang(Apple LLVM 7.3.0版(clang-703.0.31))进行编译.

这是编译器的错误吗?

解决方法

这是一份记录在案的 gcc bug,截至2016年8月尚未解决.
原文链接:https://www.f2er.com/c/112744.html

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