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

自定义实现拷贝构造函数

时间:2017-04-12 04:36:56      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:string   bsp   函数   strcpy   输入参数   new   rcp   入参   ons   

String::String(const String &other){    // 得分点:输入参数为const型
    int length = strlen(other.m_data);
    m_data = new char[length+1];     //加分点:对m_data加NULL 判断
    strcpy(m_data, other.m_data);
}

自定义实现拷贝构造函数

标签:string   bsp   函数   strcpy   输入参数   new   rcp   入参   ons   

原文地址:http://www.cnblogs.com/quan1/p/6696193.html

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