码迷,mamicode.com
首页 > 其他好文 > 详细

string 简单实现

时间:2015-07-24 18:34:41      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

namespace ss{
    class string {
        friend ostream& operator <<(ostream&, const string&);
        char *_str;
    public:
        string():_str(new char[1]){
            _str[0] = '\0';
        }
        string(const char* str):_str(new char[strlen(str)+1]) {
            strcpy(_str, str);
        }
        string(const string & s):_str(new char[s.size()+1]){
            strcpy(_str, s._str);
        }
        string( string&& s):_str(s._str) {
            s._str = nullptr;
        }
        //operator
        string & operator =(string s) {
            swap(s);
            return *this;
        }
        char & operator [](int i) {return _str[i];}
        /*
         string &operator =(const string &s){
         if (this != &s) {
         delete []_str;
         if(s._str!= nullptr) {
         _str = new char[strlen(s._str)+1];
         strcpy(_str, s._str);
         }
         }
         return *this;
         }*/
        //get
        size_t size() const {
            return strlen(_str);
        }
        //
        void swap(string& s) {
            std::swap(_str, s._str);
        }
    };
    ostream& operator << (ostream& os, const string &ob)
    {
        os << ob._str;
        return os;
    }
    
};

版权声明:本文为博主原创文章,未经博主允许不得转载。

string 简单实现

标签:

原文地址:http://blog.csdn.net/susser43/article/details/47042635

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!