收藏 分销(赏)

C++中赋值运算符重载.doc

上传人:pc****0 文档编号:6659916 上传时间:2024-12-19 格式:DOC 页数:5 大小:46.50KB
下载 相关 举报
C++中赋值运算符重载.doc_第1页
第1页 / 共5页
C++中赋值运算符重载.doc_第2页
第2页 / 共5页
C++中赋值运算符重载.doc_第3页
第3页 / 共5页
C++中赋值运算符重载.doc_第4页
第4页 / 共5页
C++中赋值运算符重载.doc_第5页
第5页 / 共5页
亲,该文档总共5页,全部预览完了,如果喜欢就下载吧!
资源描述

1、赋值运算符重载虽然一个对象可以由一个单一的赋值语句赋值给另一个对象,我们之前提到的,此操作可能只创建一个逻辑复制(即,由一个成员复印件)。在一个逻辑复制,在一个对象的成员将该成员的值在其他对象。如果一个类有一个指针成员,由成员复印件使指针成员在两个对象指向同一个对象。有两个问题与此成员对成员的复制:第一,因为指针在两个对象共享相同的变量,这个变量的变化而变化的对象。在其他的话,这两个对象都不是独立的。第二,如果共享变量在堆上,我们不知道谁是负责释放内存。这记忆是不自由的,也将是免费的两倍,这是不允许。当一个类成员是一个指向堆内存,我们通常需要过载赋值操作符来创建一个物理副本。实例1:/说明动态

2、内存分配的默认分配的危险。#include #include const int MAX_CHAR = 10;class Accountfriend ostream& operator strlen(title) )char* tmp = title;title = new charstrlen(newname)+1;strcpy (title,newname);delete tmp;elsestrcpy (title,newname);void changename(char* newname)strcpy (owner,newname);Account () delete title;pr

3、ivate:char * title;char ownerMAX_CHAR;float balance;ostream& operator (ostream& os, Account &b)os who: b.title b.owner how much=b.balancen;os endl;return os;void main()Account acc(Lou,Mr, 100);Account acc1;cout acc;cout acc1;acc1=acc;cout acc1;acc1.changename(jean);cout acc1;coutacc;acc1.changetitle

4、(Dr.);cout acc1;cout实例2:/这个例子定义了类的向量的第二版,具有过载运算符=,/和。#include class Vectorpublic:Vector(int s, int an_array ); / a constructor Vector( )delete rep; / a destructorint get_size( ) const return size; / an accessorconst Vector& operator=(const Vector& x);int& operator (int index) return repindex;llconst

5、 int& operator (int index) const return repindex;private:int *rep;int size;/ A constructor initializing the members of rep by theparameter an_arrayVector: Vector(int s, int an_array ):size(s), rep(newints)for (int i = 0; i size; +i)repi = an_arrayi;/ Note that the initializer uses new ints to initia

6、lizerep, but not new intsize/ because the initializers may not be evaluated in thespecified order.const Vector& Vector:operator=(const Vector& x)if( this != &x)size = x.size;delete rep; / clean up the old one.rep = new intsize;for (int i = 0; i size; +i)repi = x.repi;/*size = x.size;if (rep != x.rep

7、)delete rep; / clean up the old one.rep = new intsize;for (int i = 0; i size; +i)repi = x.repi;*/return *this;ostream& operator(ostream& out, const Vector& x)int s = x.get_size( );for (int i = 0; i s; +i)out xiendl;return out;请注意,在这个类中,矢量是通过一个动态数组表示。赋值操作符,复制构造函数和析构函数是必要的。在类向量以前的版本,我们不需要这些功能,因为一个物理副本

8、将由编译器创建的如果分配或复制发生。操作员+ =。+,* =,和/ =也以同样的方式超载。我们也可以使用这些运算符过载算子。例如,我们可以实现运算符+=在复合类如下:const Complex& Complex:operator+= (const Complex& c)r += c._r;i += c._i;return *this;Then, the operator + can be overloaded as the following:const Complex operaotr+ (const Complex& c1, const Complex&c2)Complex temp(c1);temp += c2;return temp;Or, implement it as a member function:const Complex Complex:operator+(const Complex& c) constComplex temp(*this);temp += c;return temp;llllll

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 百科休闲 > 其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服