程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> const-這個程序的結果為什麼只能輸出字符串的第一個字符?

const-這個程序的結果為什麼只能輸出字符串的第一個字符?

編輯:編程綜合問答
這個程序的結果為什麼只能輸出字符串的第一個字符?

#include
#include
using namespace std;
class String{
private:
char*m_data;
public:
String(const char * str=NULL);
String(const String & other);
~String();
};
String::String(const char * str){
if(str!=NULL){
m_data=new char[strlen(str)+1];
strcpy(m_data,str);
}
else{
m_data=new char[8];
strcpy(m_data,"no char");
}
cout<<*m_data<<" constructing!"<<endl;
}
String::String(const String&other){
if(other.m_data!=NULL)
{
m_data=new char[strlen(other.m_data)+1];
strcpy(m_data,other.m_data);
}
else{
m_data=new char [8];
strcpy(m_data,"no char");
}
cout<<*m_data<<" copy constructing!"<<endl;
}
String::~String(){
cout<<*m_data<<" destructing!"<<endl;
delete[]m_data;
}
int main(){
String s1("family");
String s2=s1;
return 0;
}

最佳回答:


你使用的是*m_data 而不是m_data

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved