首先来看一段C程序:
#include <stdio.h>
#include <string.h>
#include <stdlib.h> void GetMem(char*& pstr){//注意必须要用指针的指针或者指针的引用。如果传本身,返回的已经是空悬指针了
pstr=(char*)malloc();
} int main(){
char* str;
GetMem(str); strcpy(str,"Hello");
strcat(str+,"World");//这里加的数字只要不超过Hello的长度都是一样的效果,最终都会寻找到末尾的0,然后连接
printf("%s",str);//HelloWorld
return ;
}
再看一段:
#include<stdio.h>
#include<string.h>
main()
{
char *p1="abc",str[]="xyz";
strcpy(str+,p1);
printf("%s\n",str);//xyabc,注意是从第2个位置开始覆盖的
}
特别要注意这两个函数的异同。