C运算符重载实例.docx
- 文档编号:2809454
- 上传时间:2022-11-15
- 格式:DOCX
- 页数:11
- 大小:16.90KB
C运算符重载实例.docx
《C运算符重载实例.docx》由会员分享,可在线阅读,更多相关《C运算符重载实例.docx(11页珍藏版)》请在冰豆网上搜索。
C运算符重载实例
C++运算符重载实例.txt我的优点是:
我很帅;但是我的缺点是:
我帅的不明显。
什么是幸福?
幸福就是猫吃鱼,狗吃肉,奥特曼打小怪兽!
令堂可是令尊表姐?
我是胖人,不是粗人。
1.赋值函数的重载
示例程序代码如下
#include"stdafx.h"
#include
classstack
{
private:
int*sp,top,max;
voidinflate();
public:
stack(intsize=10)
{
sp=(int*)malloc(sizeof(int)*size);
max=size;
top=0;
}
intpop();
voidpush(intvalue);
stack&operator=(stack&rightValue);
};
//栈的容量增倍
voidstack:
:
inflate()
{
intindex,*tp;
tp=(int*)malloc(sizeof(int)*max*2);
for(index=0;index { tp[index]=sp[index]; } max+=max; free(sp); sp=tp; } //出栈 intstack: : pop() { if(top<=0) throw1; returnsp[--top]; } //入栈 voidstack: : push(intvalue) { if(top==max) inflate(); sp[top++]=value; } //赋值函数 stack&stack: : operator=(stack&rightValue) { top=rightValue.top; max=rightValue.max; sp=(int*)malloc(sizeof(int)*max); for(intindex=0;index { sp[index]=rightValue.sp[index]; } return*this; } voidmain() { stackx(100),y,z; z=y=x; } 这里要注意的是赋值函数的返回值是stack&,这是为了实现链式表达式,如z=y=x;。 这一点可见《高质量c/c++编程》(林锐)一书。 2.[]的重载 语法: 值类型operator[](一个形参)函数体 示例程序如下: #include"stdafx.h" #include #include usingnamespacestd; classArray { private: int*a,len; voidinflate() { cout<<"thearrayisinflating..."< int*b=(int*)malloc(sizeof(int)*len*2);
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 运算符重载实例 运算 重载 实例