我正在解决这个问题。
编写一个 String 类并重载 + 运算符以混合两个字符串,以便创建一个新字符串,其中每个字符串中的一个字符拼凑在一起,直到所有字符都混合在一起。例如 • "1234567890" + "QWERTYUIOP" = "1Q2W3E4R5T6Y7U8I9O0P"
你能帮我连接两个字符串的字符吗?
这是我写的代码:
#include "stdafx.h"
#include<iostream>
#include<conio.h>
#include<string>
using namespace std;
class MY_String : public string
{
public:
char *rep;
MY_String(){}
MY_String(char *tem)
{
rep = new char[strlen(tem)+1] ;
strcpy(rep,tem);
}
MY_String operator + (const MY_String &rhs)
{
char *temp;MY_String obj11("1234567890");
temp= new char[strlen(rep) + strlen(rhs.rep)+1];//cout<<"TEMP::"<<rhs.rep<<endl;
temp = strcat(rep,rhs.rep);
return MY_String(temp);
}
};
int main()
{
MY_String obj1("1234567890");
MY_String obj2("QWERTYUIOP");
MY_String obj3;
obj3 = obj1+obj2;
cout<<obj3.rep;
return 0;
}