浅谈C++对象的拷贝与赋值操作

我发现一些同事在用C++编写一个类时,知道什么时候需要实现拷贝构造函数赋值操作,但不知道什么时候拷贝构造函数被调用,什么时候赋值操作被调用,甚至把二者混为一谈。

创新互联是一家专业提供绵竹企业网站建设,专注与成都做网站、成都网站制作、H5开发、小程序制作等业务。10年已为绵竹众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。

要弄明白这个问题,最简单的做法莫过于写个测试程序试一下。不过那样做也未必是好办法,实验的结果往往导致以偏概全的结论。不如好好想一下,弄清楚其中的原理,再去写程序去验证也不迟。

拷贝构造函数,顾名思义,等于拷贝 + 构造。它肩负着创建新对象的任务,同时还要负责把另外一个对象拷贝过来。比如下面的情况就调用拷贝构造函数:

 
 
 
  1. cstring str = strother;

赋值操作则只含有拷贝的意思,也就是说对象必须已经存在。比如下面的情况会调用赋值操作。

 
 
 
  1. str = strother;

不过有的对象是隐式的,由编译器产生的代码创建,比如函数以传值的方式传递一个对象时。由于看不见相关代码,所以不太容易明白。不过我们稍微思考一下,就会想到,既然是根据一个存在的对象拷贝生成新的对象,自然是调用拷贝构造函数了。

两者实现时有什么差别呢?我想有人会说,没有差别。呵,如果没有差别,那么只要实现其中一个就行了,何必要两者都实现呢?不绕圈子了,它们的差别是:

拷贝构造函数对同一个对象来说只会调用一次,而且是在对象构造时调用。此时对象本身还没有构造,无需要去释放自己的一些资源。而赋值操作可能会调用多次,你在拷贝之前要释放自己的一些资源,否则会造成资源泄露。

明白了这些道理之后,我们不防写个测试程序来验证一下我们的想法:

 
 
 
  1. #include 
  2. #include 
  3. #include 
  4. class cstring
  5. public:
  6. cstring();
  7. cstring(const char* pszbuffer);
  8. ~cstring();
  9. cstring(const cstring& other);
  10. const cstring& operator=(const cstring& other);
  11. private:
  12. char* m_pszbuffer;;
  13. }; 
  14. cstring::cstring()
  15. {
  16. printf("cstring::cstring\n");
  17. m_pszbuffer = null;
  18. return; 
  19. cstring::cstring(const char* pszbuffer)
  20. {
  21. printf("cstring::cstring(const char* pszbuffer)\n");
  22. m_pszbuffer = pszbuffer != null ? strdup(pszbuffer) : null;
  23. return;
  24. }
  25. cstring::~cstring()
  26. {
  27. printf("%s\n", __func__);
  28. if(m_pszbuffer != null)
  29. {
  30. free(m_pszbuffer);
  31. m_pszbuffer = null;
  32. }
  33. return;
  34. }
  35. cstring::cstring(const cstring& other)
  36. {
  37. if(this == &other)
  38. {
  39. return;
  40. }
  41. printf("cstring::cstring(const cstring& other)\n");
  42. m_pszbuffer = other.m_pszbuffer != null ? strdup(other.m_pszbuffer) : null;
  43. }
  44. const cstring& cstring::operator=(const cstring& other)
  45. {
  46. printf("const cstring& cstring::operator=(const cstring& other)\n");
  47. if(this == &other)
  48. {
  49. return *this;
  50. }
  51. if(m_pszbuffer != null)
  52. {
  53. free(m_pszbuffer);
  54. m_pszbuffer = null;
  55. }
  56. m_pszbuffer = other.m_pszbuffer != null ? strdup(other.m_pszbuffer) : null;
  57. return *this;
  58. }
  59. void test(cstring str)
  60. {
  61. cstring str1 = str;
  62. return;
  63. }
  64. int main(int argc, char* argv[])
  65. {
  66. cstring str;
  67. cstring str1 = "test";
  68. cstring str2 = str1;
  69. str1 = str;
  70. cstring str3 = str3;
  71. test(str);
  72. return 0;
  73. }

希望对你有帮助。

本文题目:浅谈C++对象的拷贝与赋值操作
网站URL:http://www.shufengxianlan.com/qtweb/news46/238396.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联