数组上的__declspec(thread)

时间:2012-10-17 14:53:01

标签: visual-studio visual-studio-2005

以下代码:

__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正确使用数组。我应该怎么做呢?

0 个答案:

没有答案