gcc编译错误现象:
b.cpp:20:1: error: stray ‘\343’ in program
//寻找最小值的下标
^
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\343’ in program
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\343’ in program
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\343’ in program
b.cpp:20:1: error: stray ‘\200’ in program
b.cpp:20:1: error: stray ‘\200’ in program
一般都是从网页复制代码导致的。
查资料得知
这个错误是由于使用了中文引号或其他全角符号,还有一种就是有中文的空格(这个不容易观察),需删除空格一直到顶格处,再用tab即可。
通过 cat -A可以看到捣乱的字符。
删除前:
for (i=0; i<n-1; i++)$
^I{$
M-cM-^@M-^@M-cM-^@M-^@M-cM-^@M-^@M-cM-^@M-^@ //M-eM-/M-;M-fM-^IM->M-fM-^\M-^@M-eM-0M-^OM-eM-^@M-<M-gM-^ZM-^DM-dM-8M-^KM-fM- M-^G$
for (pos=i, j=i+1; j<n; j++)$
if (a[pos]>a[j])$
pos=j;$
if (pos != i) {$
tmp=a[i];$
a[i]=a[pos];$
a[pos]=tmp;$
}$
^I^Iprint(a, i);$
}$
用TAB替换后:
for (i=0; i<n-1; i++)$
^I{$
^I^I//M-eM-/M-;M-fM-^IM->M-fM-^\M-^@M-eM-0M-^OM-eM-^@M-<M-gM-^ZM-^DM-dM-8M-^KM-fM- M-^G$
for (pos=i, j=i+1; j<n; j++)$
if (a[pos]>a[j])$
pos=j;$
if (pos != i) {$
tmp=a[i];$
a[i]=a[pos];$
a[pos]=tmp;$
}$
^I^Iprint(a, i);$
}$
用英文空格替换后:
for (i=0; i<n-1; i++)$
^I{$
//M-eM-/M-;M-fM-^IM->M-fM-^\M-^@M-eM-0M-^OM-eM-^@M-<M-gM-^ZM-^DM-dM-8M-^KM-fM- M-^G$
for (pos=i, j=i+1; j<n; j++)$
if (a[pos]>a[j])$
pos=j;$
if (pos != i) {$
tmp=a[i];$
a[i]=a[pos];$
a[pos]=tmp;$
}$
^I^Iprint(a, i);$
}$
解决方案可以编写脚本过滤字符,看到有人说可以用gedit的替换功能,替换为标准空格。这个方法比较省力一点。尤其是代码较多时。一行一行改的想法还是放弃吧。
这种关于空格编码的问题,之前也遇到过。