| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 497 人关注过本帖
标题:请教一下,我认为这个程序是对的,为什么运行出错呀!谢谢各位了
只看楼主 加入收藏
chencuicui
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2007-5-1
收藏
 问题点数:0 回复次数:0 
请教一下,我认为这个程序是对的,为什么运行出错呀!谢谢各位了
#include <iostream.h>
#include <string.h>
class MyString
{
public:
    MyString() {m_data = NULL;}            
    MyString(const char *str);                    
    ~MyString();                    
    MyString operator-(const MyString &other);
    MyString operator=(const MyString &other);
    friend ostream &operator<<(ostream &stream, const MyString &str);
                        //重载输出运算符"<<"
private:
    char *m_data;    
};
#define NULL 0
MyString::~MyString()
{
    if(m_data)
        delete [] m_data;
    m_data = NULL;
}
MyString::MyString(const char *str)
{
    if(str == NULL)
    {
        m_data = new char[1];
        *m_data = '\0';
    }
    else
    {
        int length = strlen(str);
        m_data = new char[length+1];
        strcpy(m_data, str);
    
    }
}
MyString MyString::operator=(const MyString &other)
{  
    if(this==&other)
       return *this;
    delete m_data;
    m_data=new char[strlen(other.m_data)+1];
    strcpy(m_data,other.m_data);
    return *this;
        
}

MyString  MyString::operator-(const MyString &other)
{   int i,j,t=0,m;
搜索更多相关主题的帖子: 运行 
2007-12-09 22:15
快速回复:请教一下,我认为这个程序是对的,为什么运行出错呀!谢谢各位了
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024009 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved