以下代码:
__declspec (thread) static int somearray[4][4] = {
{16, 12, 12, 8},
{12, 8, 8, 4},
{12, 8, 8, 4},
{ 8, 4, 4, 0}};
引发以下错误:
error C2144: syntax error : 'int' should be preceded by ';'
看来我在这里没有正确使用 threadlocal 和数组。我应该怎么做?