出错现场:
[cpp] view plaincopyprint?
if (!P2) continue;
uint t0 = P0; //error
t2 = P2;
注释处出现错误:error C141: syntax error near 'unsigned'
查阅资料,发现错误原因是变量的声明位置不当。
在某些C编译器支持的C标准中,C语言声明变量的位置应当在所有可执行语句之前,像上述程序就出现error。
一个编译通过的例子:
[cpp] view plaincopyprint?
void main()
{
uint led_table[MAX_COLUMN][MAX_ROW] =
{
{0x37, 0x06, 0x5b, 0x4f, 0x66},
{0x6d, 0x7d, 0x07, 0x7f, 0x6f},
{0x77, 0x7c, 0x39, 0x5e, 0x79},
{0x71, 0x38, 0x7e, 0x73, 0x37},
};
uint t0;
uint t2;
uint row;
uint col;
P3 = 0;
//.....
}
阅读(1747) | 评论(0) | 转发(0) |