我无法使用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_), std::cend(bars_), [this] (const auto& x) { print(x); });
^~~~~
将const auto& x
更改为const std::string& x
会使程序编译。
将print(x)
更改为this->print(x)
会使程序编译。
所有版本都使用Clang编译(Apple LLVM版本7.3.0(clang-703.0.31))。
这是编译器错误吗?
答案 0 :(得分:5)
这是一份记录在案的gcc bug,截至2016年8月尚未确定。
答案 1 :(得分:-3)
我不认为编译器有义务推断出在for_each函数中传递给lambda的类型,请记住这个函数已经编译过了,编译器如何知道for_each函数将传递给什么lambda传递lambda后的lambda?
答案 2 :(得分:-4)
我不知道为什么。但解决方案是指定它应该使用哪个打印:
std::for_each(std::cbegin(bars_), std::cend(bars_), [this] (const auto& x) { this->print(x); });
用它编译。 请参阅:List of ANSI color escape sequences