| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2302 人关注过本帖, 1 人收藏
标题:求帮助,不会改错。。。谢谢(用的是VS2010)
只看楼主 加入收藏
shinee绿豆
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2016-11-17
结帖率:50%
收藏(1)
已结贴  问题点数:20 回复次数:10 
求帮助,不会改错。。。谢谢(用的是VS2010)
/*基于char*.设计一个字符串MyString并且具有构造函数,析构函数,复制构造函数,并在其中加入重载运算符,使之能满足各种需求
string s1="abc",s2="def";
string s3=s1+s2;         结果是“abcdef”
char s5=s2[1];           结果是“e”*/
#include <iostream>
#include <string>
using namespace std;

class MyString
{
private:
    int i;
    char* string;   
public:
    MyString( )                      //构造函数
    {
        string = new char [1];
        string[0] = '\0';
        i=1;
    }
    ~MyString()                      //析构函数
    {
        delete [] string;
    }
    MyString(const MyString &rhs)    //复制构造函数
    {
        i=strlen(rhs.string);
        string = new char [i+1];
        string[i] = '\0';
        //strcpy(string,rhs.string);
    }
    MyString(const char* s)          //用指针s所指向的字符串常量初始化atring类的对象
    {
        i=strlen(s);
        string = new char [i+1];
        string[i] = '\0';
        //strcpy(string,s);
    }
    MyString operator+(const MyString &s) const //加法运算
    {
        int len = strlen(s.string);
        char* str = new char [len+1];
        str[len] = '\0';
        strcat(string,s.string);
        strcpy(str,string);
        return MyString (str);
    }
    char operator[](int x) const    //按下标查找元素
    {
        if (x>i||x<0)
        {
            cout<<"查找不在范围内!"<<endl;
        }
        else
            return string[i];
    }
    friend ostream & operator<< (ostream &out, const MyString &s)
    {
        out<<s.string;
        return out;
    }
    void show()
    {
        cout<<"加法运算结果为:"<<string[i]<<endl;
    }
};

void main()
{
    int m;
    MyString s1 = "abc",s2="def",s3;
    s3=s1+s2;
    s3.show();
    cout<<"请输入你要查找的信息的下标:";
    cin>>m;
    cout<<"查找的元素为:"<<s3[m]<<endl;
    system("pause");
}
搜索更多相关主题的帖子: private include public 字符串 
2016-11-17 23:06
yangfrancis
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:贵宾
威 望:141
帖 子:1510
专家分:7661
注 册:2014-5-19
收藏
得分:5 
    MyString(const MyString &rhs)    //复制构造函数
    {
        i=strlen(rhs.string);
        string = new char [i+1];
        string[i] = '\0';
        //strcpy(string,rhs.string);
    }
你是只复制另一个对象的字符串长度还是它的字符串?如果是想复制字符串的话要用strcpy();
2016-11-18 14:42
shinee绿豆
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2016-11-17
收藏
得分:0 
回复 2楼 yangfrancis
我把它取消注释后还是不对啊
MyString(const MyString &rhs)    //复制构造函数
    {
        i=strlen(rhs.string);
        string = new char [i+1];
        string[i] = '\0';
        strcpy(string,rhs.string);
    }
结果还是出不来啊
2016-11-18 16:25
yangfrancis
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:贵宾
威 望:141
帖 子:1510
专家分:7661
注 册:2014-5-19
收藏
得分:0 
想解决哪个模块?哪一个函数结果出不来?
2016-11-18 22:02
xufan
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:6
帖 子:232
专家分:804
注 册:2008-10-20
收藏
得分:5 
下面按照你的思路修改下,你可以参考:
程序代码:
#include <iostream>
#include <string>
using namespace std;

class MyString
{
    char* string;    
private:
    MyString()
    {
        string = NULL;
    }
public:
    ~MyString()                      //析构函数
    {
        delete[] string;
    }

    MyString(const MyString &rhs)    //复制构造函数
    {
        size_t srcLen = strlen(string);
        size_t dstLen = strlen(rhs.string);
        if (srcLen <= dstLen)
        {
            delete[] string;
            string = new char[dstLen + 1];
            memcpy(string, rhs.string, dstLen);
            string[dstLen - 1] = '\0';
        }
        else
        {
            memset(string, 0, strlen(string));
            memcpy(string, rhs.string, dstLen);
            string[dstLen - 1] = '\0';
        }
    }
    
    MyString operator=(const MyString& rhs)
    {
        return *this;
    }

    MyString(const char* s)          //用指针s所指向的字符串常量初始化atring类的对象
    {
        size_t len = strlen(s) + 1;
        string = new char[len];
        memcpy(string, s, strlen(s));
        string[len - 1] = '\0';
    }

    MyString operator+(const MyString &s) const //加法运算
    {
        size_t len = strlen(s.string);
        char* str = new char [len+1];
        str[len - 1] = '\0';
        strcat(string,s.string);
        strcpy(str,string);
        return MyString(str);
    }

    char operator[](int x) const    //按下标查找元素
    {
        return string[x];
    }

    friend ostream & operator<< (ostream &out, const MyString &s)
    {
        out<<s.string;
        return out;
    }

    void show()
    {
        cout<<"加法运算结果为:"<<string<<endl;
    }
};

void main()
{
    int m = 1;
    MyString s1 = "abc",s2="def";
    MyString s3 = s1+s2;
    s3.show();
    cout<<"查找的元素为:"<<s3[m]<<endl;
}


[此贴子已经被作者于2016-11-18 23:01编辑过]


~~~~~~我的明天我知道~~~。
2016-11-18 22:59
shinee绿豆
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2016-11-17
收藏
得分:0 
回复 4楼 yangfrancis
加法和查找的结果实现不了
2016-11-19 18:47
shinee绿豆
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2016-11-17
收藏
得分:0 
回复 5楼 xufan
请问一下你用的是什么编译器?
2016-11-19 19:36
yangfrancis
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:贵宾
威 望:141
帖 子:1510
专家分:7661
注 册:2014-5-19
收藏
得分:0 
回复 6楼 shinee绿豆
加法的长度就没有留够
int len = strlen(s.string);
应该是
int len = strlen(s.string)+strlen(string);吧?
2016-11-19 22:00
平凡之路
Rank: 1
等 级:新手上路
帖 子:2
专家分:5
注 册:2016-11-21
收藏
得分:5 
友情帮顶
2016-11-21 03:02
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:528
帖 子:9024
专家分:54030
注 册:2011-1-18
收藏
得分:5 
随手写的,你自己检查一下

程序代码:
#include <cstring>
#include <iostream>
#include <exception>

class MyString
{
public:
    MyString() try : size_(0), str_(new char[size_+1])
    {
        str_[0] = '\0';
    }
    catch( std::bad_alloc& )
    {
        throw;
    }

    MyString( const MyString& rhs ) try : size_(rhs.size_), str_(new char[size_+1])
    {
        memcpy( str_, rhs.str_, size_+1 );
    }
    catch( std::bad_alloc& )
    {
        throw;
    }

    MyString( const char* rhs ) try : size_(strlen(rhs)), str_(new char[size_+1])
    {
        memcpy( str_, rhs, size_+1 );
    }
    catch( std::bad_alloc& )
    {
        throw;
    }

    MyString& operator=( const MyString& rhs )
    {
        if( this != &rhs )
        {
            if( size_ >= rhs.size_ )
            {
                size_ = rhs.size_;
                memcpy( str_, rhs.str_, size_ );
            }
            else
            {
                delete[] str_;
                size_ = rhs.size_;
                str_ = new char[size_+1];
                memcpy( str_, rhs.str_, size_ );
            }
        }
        return *this;
    }

    ~MyString()
    {
        delete[] str_;
    }

    MyString operator+( const MyString& s ) const
    {
        size_t newsize = size_ + s.size_;
        char* newstr = new char[ newsize+1 ];
        memcpy( newstr, str_, size_ );
        memcpy( newstr+size_, s.str_, s.size_+1 );
        MyString result;
        result.size_ = newsize;
        result.str_ = newstr;
        return result;
    }

    char operator[]( size_t index ) const
    {
        return str_[index];
    }
    char& operator[]( size_t index )
    {
        return str_[index];
    }

    char at( size_t index ) const
    {
        if( index > size_ )
            throw std::out_of_range("out of range");
        return str_[index];
    }
    char& at( size_t index )
    {
        if( index > size_ )
            throw std::out_of_range("out of range");
        return str_[index];
    }

private:
    size_t size_;
    char* str_;

    friend std::ostream& operator<<( std::ostream& out, const MyString& s );
};

std::ostream& operator<<( std::ostream& out, const MyString& s )
{
    return out << s.str_;
}

using namespace std;

int main( void )
{
    MyString s1="abc", s2="def";
    MyString s3 = s1 + s2;
    char s5 = s2[1];

    cout << s1 << '\n'
         << s2 << '\n'
         << s3 << '\n'
         << s5 << endl;

    return 0;
}

2016-11-21 08:49
快速回复:求帮助,不会改错。。。谢谢(用的是VS2010)
数据加载中...
 
   



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

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