我有一个关于使用 strcpy 的问题。我知道 ANSI C 标准说:源和目标不能重叠,否则行为是不可预测的。如果在 Linux 下使用旧的 gnu C 编译器编译,我将向您展示一段代码,它可以按我的预期工作。
#include <string.h>
#include <stdio.h>
char S[80],*P;
int main() {
strcpy(S,"abcdefghi\r\njklmnopqr\r\nstuvwxyz\r\n");
for (P=S; P=strchr(P,'\r'); P++) strcpy(P,P+1);
printf("%s\n",S);
return 0;
}
此序列从输入字符串中删除每个\r
(回车)。我知道(来自 Kernigham 和 Ritchie)strcpy 的一个非常简单的实现如下
while (*t++=*s++) ;
现在我使用 gcc (Gentoo 4.5.4 p1.0, pie-0.4.7) 4.5.4 编译了我的程序,它打印了这个:
abcdefghi
jklmnpqr <-- missing 'o'
stuvwxxyz <-- doubled 'x'
我想这个编译器(实际上是它的库)使用了一个非常复杂的序列 for strcpy
,我不明白原因。