6

ラムダを利用する tbb::parallel_for 関数を使用しています。次のコードで構文エラーが発生します。

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++11 の前身である C++0x コア言語仕様の多くの機能を実装し、Visual Studio 2012 の Visual C++ はそれを拡張して多くの C++11 機能を含めています。

于 2013-04-07T18:12:03.473 に答える