在'['之前的预期表达

时间:2015-10-06 19:13:23

标签: c++ g++

我是编程新手。最近我尝试使用c++ sort keeping track of indices

中的排序功能
template <typename T>
std::vector<size_t> ordered(std::vector<T> const& values) {
std::vector<size_t> indices(values.size());
std::iota(begin(indices), end(indices), static_cast<size_t>(0));

std::sort(
    begin(indices), end(indices),
    [&](size_t a, size_t b) { return values[a] < values[b]; }
);
return indices;
}

在Xcode中,它成功编译时没有任何警告。在g ++中,它显示以下错误消息:

error: expected expression
          [&](size_t a, size_t b) { return values[a] < values[b];}
          ^

这意味着什么?谢谢!

1 个答案:

答案 0 :(得分:2)

beginend位于std命名空间中。你需要对它们进行限定:

std::sort(
    std::begin(indices), std::end(indices),
    [&](size_t a, size_t b) { return values[a] < values[b]; }
);

此外lambdas是C ++ 11的一项功能,因此您需要使用-std=c++11进行编译才能使用它们。