標(biāo)題: error: quoted string should contain at least [打印本頁] 作者: heicad 時(shí)間: 2014-6-14 04:28 標(biāo)題: error: quoted string should contain at least error: quoted string shouldcontain at least one character
程序如下:
u8 t=0;
t='';
while(1)
{
.......
}
顯示錯(cuò)誤的程序行是t='';排查錯(cuò)誤時(shí),發(fā)現(xiàn):
其間少了一個(gè)空格,改為t=' ';時(shí)
重新編譯: 0 Error(s), 0Warning(s). 正確!!