6

我正在使用 tbb::parallel_for 函数,它利用了 lambdas。我收到以下代码的语法错误:

void parallel_relax( Class object, std::vector<Vertex *> verList ) {
    tbb::parallel_for (blocked_range<int>(0, verList.size()), [=](const blocked_range<Vertex *>& r) {
        for(Vertex *vit = r.begin(); vit != r.end(); ++vit) {
            Vertex *v = vit;
            object.function(v);
        }
    });
}

语法错误:

syntax error : '['
1>main.cpp(16): error C2143: syntax error : missing ')' before '{'
1>main.cpp(16): error C2143: syntax error : missing ';' before '{'
1>main.cpp(17): error C2065: 'r' : undeclared identifier
1>main.cpp(17): error C2228: left of '.begin' must have class/struct/union
1>          type is ''unknown-type''
1>main.cpp(17): error C2065: 'r' : undeclared identifier
1>main.cpp(17): error C2228: left of '.end' must have class/struct/union
1>          type is ''unknown-type''
1>main.cpp(20): error C2059: syntax error : ')'
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

我认为这是编译器的问题。我如何获得 Visual Studio 2010 Express Edition 的 c++11 编译器。请建议。

4

2 回答 2

4

Visual C++ 2010 Express 确实包含 C++11 功能,但不是全部。以下是它支持的功能列表(以及 VC++ 2012):http: //msdn.microsoft.com/en-ca/library/vstudio/hh567368.aspx

于 2013-04-07T19:03:11.510 回答
3

要获得 C++11 功能,您应该使用最新版本Visual Studio 2012

来自C++11 特性(现代 C++)

Visual C++ 2010 在 C++0x 核心语言规范(C++11 的前身)中实现了许多功能,Visual Studio 2012 中的 Visual C++ 在此基础上进行了扩展以包含许多 C++11 功能。

于 2013-04-07T18:12:03.473 回答