c新手吧 关注:8,586贴子:48,089
  • 4回复贴,共1

没人能解释 明天换贴吧

只看楼主收藏回复

# include<iostream>
# include<stdlib.h>
# include<string.h> using namespace std; class String
{
public:
String(const char *str = NULL);
String(const String &other);
~String();
String & operator =(const String &other);
String & operator +(const String &other);
print(){cout<<m_data<<endl;}
private:
char *m_data; // 用于保存字符串
}; String::String(const char *str)
{
if (NULL == str)
{
m_data = new char[1];
*m_data = '\0';
}
else
{
int length = strlen(str);
m_data = new char[length + 1];
strcpy(m_data, str);
}
} String::String(const String &other)
{
int length = strlen(other.m_data);
m_data = new char[length +1];
strcpy(m_data, other.m_data);
} String::~String()
{
delete []m_data;
} String & String::operator =(const String &other)
{
if (this == &other)
return *this; delete []m_data;
int length = strlen(other.m_data);
m_data = new char[length+1];
strcpy(m_data, other.m_data); return *this;
} String & String::operator +(const String &other)
{
String temp;
strcpy(temp.m_data, this->m_data);
delete []m_data;
this->m_data = new char[strlen(this->m_data)+strlen(other.m_data)+1];
strcpy(this->m_data, temp.m_data);
strcat(this->m_data, other.m_data);
return *this; //这里报错 求解释
} void main()
{
String a = "123456";
a.print();
String b = a;
b.print();
String c= a+b; c.print();
}


IP属地:陕西1楼2012-09-05 10:40回复
    我看了看,没错误,而且运行也没有报错啊


    IP属地:浙江2楼2012-09-05 18:43
    收起回复
      # include<iostream># include<stdlib.h># include<string.h>
      using namespace std; class String{public:&nbsp&nbsp&nbsp&nbsp;String(const char *str = NULL);&nbsp&nbsp&nbsp&nbsp;String(const String &other);&nbsp&nbsp&nbsp&nbsp;~String();&nbsp&nbsp&nbsp&nbsp;String & operator =(const String &other);&nbsp&nbsp&nbsp&nbsp;String & operator +(const String &other);&nbsp&nbsp&nbsp&nbsp;void print(){cout<<m_data<<endl;}private:&nbsp&nbsp&nbsp&nbsp;char *m_data; // 用于保存字符串};
      String::String(const char *str){&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;if (NULL == str)&nbsp&nbsp&nbsp&nbsp;{&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;m_data = new char[1];&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;*m_data = '\0';&nbsp&nbsp&nbsp&nbsp;}&nbsp&nbsp&nbsp&nbsp;else&nbsp&nbsp&nbsp&nbsp;{&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;int length = strlen(str);&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;m_data = new char[length + 1];&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;strcpy(m_data, str);&nbsp&nbsp&nbsp&nbsp;}}
      String::String(const String &other){&nbsp&nbsp&nbsp&nbsp;int length = strlen(other.m_data);&nbsp&nbsp&nbsp&nbsp;m_data = new char[length +1];&nbsp&nbsp&nbsp&nbsp;strcpy(m_data, other.m_data);}
      String::~String(){&nbsp&nbsp&nbsp&nbsp;delete []m_data;}
      String & String::operator =(const String &other){&nbsp&nbsp&nbsp&nbsp;if (this == &other)&nbsp&nbsp&nbsp&nbsp;return *this; &nbsp&nbsp&nbsp&nbsp;delete []m_data;&nbsp&nbsp&nbsp&nbsp;&nbsp&nbsp&nbsp&nbsp;int length = strlen(other.m_data);&nbsp&nbsp&nbsp&nbsp;m_data = new char[length+1];&nbsp&nbsp&nbsp&nbsp;strcpy(m_data, other.m_data);&nbsp&nbsp&nbsp&nbsp; return *this; } String & String::operator +(const String &other){&nbsp&nbsp&nbsp&nbsp;String temp;&nbsp&nbsp&nbsp&nbsp;strcpy(temp.m_data, this->m_data);&nbsp&nbsp&nbsp&nbsp;delete []m_data;&nbsp&nbsp&nbsp&nbsp;this->m_data = new char[strlen(this->m_data)+strlen(other.m_data)+1];&nbsp&nbsp&nbsp&nbsp;strcpy(this->m_data, temp.m_data);&nbsp&nbsp&nbsp&nbsp;strcat(this->m_data, other.m_data);&nbsp&nbsp&nbsp&nbsp;return *this; //这里报错 求解释}
      int main(){&nbsp&nbsp&nbsp&nbsp;String a = "123456";&nbsp&nbsp&nbsp&nbsp;a.print();&nbsp&nbsp&nbsp&nbsp;String b = a;&nbsp&nbsp&nbsp&nbsp;b.print();&nbsp&nbsp&nbsp&nbsp;String c= a+b;&nbsp&nbsp&nbsp&nbsp; c.print();&nbsp&nbsp&nbsp&nbsp;return 0;}
      


      IP属地:浙江3楼2012-09-05 18:46
      回复