1

在编译VS之前说

错误成员“test::A”不是变量

错误成员“test::B”不是变量

代码:

#include <iostream>
#include <ppl.h>

using namespace concurrency;
using namespace std;

class test
{
        static double A[ 3 ][ 3 ];
        static double B[ 3 ][ 3 ];
public:
        int test_function();
};

double test::A[ 3 ][ 3 ] = { {  0.7,  -0.2,   -1   },
                             { -4,    -2,     -2   },
                             { -0.4,   1.7,   -1.8 } };

double test::B[ 3 ][ 3 ] = { {  0.6,  -1.2,    1.1 },
                             {  2,     3,     -2   },
                             { -1,     0.05,   0.05} };

int test::test_function()
{
    parallel_for ( 0, 100, [ &A, &B ]( int y ) {
        for ( int x = 0; x < 100; x++ ) {

            for ( int i = 0; i < 3; i++ )
                for ( int j = 0; j < 3; j++ )
                     A[ j ][ i ] += A[ j ][ i ] * B[ j ][ i ];

        }
    } );
}

int main()
{
        return 0;
}

错误:

'test::A': lambda 捕获变量必须来自封闭函数范围

'test::B': lambda 捕获变量必须来自封闭函数范围

我该怎么办?

4

1 回答 1

2

捕获 static 没有意义,因为它们是类 static。在函数中定义的 lambda 与在其中定义的函数具有相同的可访问性。因此,在该函数中可见的变量(如类私有)在 lambda 中可见。

类静态成员仍然存在,即使函数被传递到别处或超出当前范围。

所以只需[]在你的 lambda 中使用而不是[ <stuff> ].

于 2013-02-13T08:15:00.553 回答