string c++ 怎么连接字符串

 我来答
老冯文库
2017-05-11 · 知道合伙人软件行家
老冯文库
知道合伙人软件行家
采纳数:1139 获赞数:8734

向TA提问 私信TA
展开全部

算法思想:

假设两个字符串分别为s1、s2,需要将s2连接在s1的末尾。

连接的思路是使用p定位到s1字符串的末尾,再从s2的第一个位置开始,将其接在p的后面,同时移动p。


C++代码:

#include "iostream"

using namespace std;

//将字符串s2连接在字符串s1的后面
char *strcat(char *s1, char * s2) {
char *p = s1;

while(*p != '\0') {
p++;
}

while(*s2!='\0') {
*p++=*s2++;
}
*p = '\0';

return s1;
}

void main(){
char str1[100] = "Hello,";
char str2[] = "world!";

strcat(str1, str2);

cout<<str1<<endl;
}


运行测试:

Hello,world!

匿名用户

2016-10-20
展开全部

直接连接即可,如:

strcat(char *,char *)

#include<iostream>
#include<string.h>
using namspace std;
int main()
{
  string s1="abc";
  string s2="cde";
  strcat(s1.c_str(),s2.c_str());
  cout<<s1;
  return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式