C++中如何将两字符指针指向的字符串连接

2024-12-02 17:22:19
推荐回答(4个)
回答1:

定义为指针指向的字符串是常字符串,只能读取不能写入。要连接这样的字符串,得另外开辟一个空间存放连接起来的字符串。举例代码如下:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include 
using namespace std;
int main(void){
    char *p1="1234567",*p2="abcdefghijklmnop",*p3;
    int tmp;
    p3=new char[tmp=strlen(p1)+strlen(p2)+1];
    cout << strcat(strcpy(p3,p1),p2) << endl;
    delete[tmp]p3;
    return 0;
}

回答2:

string + string... 两个字符串直接相加。。。 如果是char *的话需要用到strcpy函数。。

回答3:

#include
void str_cat( char t[], char *s )
{
char *tmp=t;
while(*tmp) tmp++;
while( *tmp++=*s++ );
}
void main()
{
char s1[100]="hello" ; //s1是结果串,因此,其空间必须要能容下待拼接的串大小
char *s2=" world" ;
str_cat( s1,s2 );
printf("%s\n", s1 );
}

回答4:

举个例子以供参考:

#include 

#include 

#include 

int main()

{

 int i,j;

 char s1[100]="google";

 char s2[100]="baidu";

 for(i=0;;i++)

 {

  if(s1[i]=='\0')

   break;

 }

 i--;

 j=0;

 while(1)

 {

  if(s2[j]!='\0')

   s1[i++]=s2[j++];

  else

   break;

 }

 printf("s1=%s",s1);

 system("pause");

 return 0; 

}