C++程序设计实验6

上传人:积*** 文档编号:120180361 上传时间:2022-07-16 格式:DOC 页数:9 大小:34KB
返回 下载 相关 举报
C++程序设计实验6_第1页
第1页 / 共9页
C++程序设计实验6_第2页
第2页 / 共9页
C++程序设计实验6_第3页
第3页 / 共9页
点击查看更多>>
资源描述
实验6 运算符重载实验目的l 掌握运算符重载的规则;l 掌握运算符成员函数与运算符友元函数的实现及应用;l 学会定义类中单目和双目运算符的重载函数;l 理解重载运算符的作用,学会对典型的运算符进行重载。实验学时本次实验需要2个学时。实验规定l 实验上机之前,根据实验内容规定,自行设计编写程序,完毕预习报告。l 实验上机时调试并修正程序。l 当次上机结束前分析错误因素并给出实验结论,提交实验报告。实验内容1.基本部分(1)定义复数类complex,涉及私有数据成员实部real和虚部image。定义该类的构造,拷贝构造,析构函数。为该类重载运算符+,-(友元函数),前置和后置+,-(成员函数),插入符和提取符(友元函数)。在main函数里定义复数对象,测试重载的这些运算符。2.进阶部分(2)设计一种mystring类,涉及数据成员char * pstr; 和 int length; 通过运算符重载实现字符串的输入、输出、)、下标等运算。/*(1)定义复数类complex,涉及私有数据成员实部real和虚部image。定义该类的构造,拷贝构造,析构函数。为该类重载运算符+,-(友元函数),前置和后置+,-(成员函数),插入符和提取符(友元函数)。在main函数里定义复数对象,测试重载的这些运算符。#include#includeusing namespace std;class Complex public:Complex(int real1=0,int image1=0) :real(real1),image(image1)Complex() ;friend Complex operator+(const Complex &a1, const Complex &a2);friend Complex operator-(const Complex &a1, const Complex &a2);Complex operator+();Complex operator+(int);Complex operator-();Complex operator-(int);friend ostream& operator(istream& is, Complex&a3);private:int real;int image;Complex operator+(const Complex &a1, const Complex &a2)return Complex(a1.real + a2.real, a1.image + a2.image);Complex operator-(const Complex &a1, const Complex &a2)return Complex(a1.real - a2.real, a1.image - a2.image);Complex Complex:operator+()+real;+image;return *this;Complex Complex:operator+(int)Complex a = *this;+(*this);return a;Complex Complex:operator-()-real;-image;return *this;Complex Complex:operator-(int)Complex a = *this;-(*this);return *this;ostream& operator(ostream& os, const Complex& a3)os a3.real + a3.image (istream& is, Complex&a3)is a3.real a3.image;return is;int main()Complex a4(4,5), a5(6,7),A,B;cout a4: a4 endl;cout a5: a5 endl;cout a4;cin a5;cout 重新输入后a4: a4 endl;cout 重新输入后a5: a5 endl;A = a4 + a5;cout 重载修改后加法A:;cout A endl;A = a4 - a5;cout 重载修改后减法A:;cout A endl;cout 重载修改后a4前置+:+a4 endl;cout 重载修改后a5后置+: a5+ endl;cout 重载修改后再次修改的a4前置-: -a4 endl;cout 重载修改后再次修改的a5后置-: a5- 、输出 、)、下标等运算。#include #include using namespace std;class mystringpublic:mystring(char *p);mystring()free(pstr);mystring& operator=(mystring& s);void operator+=(mystring & a)this-pstr = (char*)realloc(this-pstr, this-length + a.length + 1);strcpy(this-pstr + (this-length), a.pstr);char& operator (int n);bool operator =(const mystring & s)if (strcmp(this-pstr, s.pstr) = 0)return 1;elsereturn 0;bool operator !=(const mystring & s)if (strcmp(this-pstr, s.pstr) != 0)return 1;elsereturn 0;bool operator pstr, s.pstr)(const mystring & s)if (strcmp(this-pstr, s.pstr)0)return 1;elsereturn 0;friend ostream & operator (ostream & os, const mystring & s) return os s.pstr (istream & is, mystring & s)delete s.pstr;is s.length ;s.pstr = new chars.length + 1;is s.pstr;*(s.pstr + s.length) = 0;return is;private:char *pstr;int length;mystring:mystring(char *p)this-pstr = (char*)malloc(strlen(p) + 1);strcpy(this-pstr, p);this-length = strlen(p);mystring& mystring: operator =(mystring & s)deletepstr; this-pstr = new charstrlen(s.pstr) + 1;if (pstr)strcpy(this-pstr, s.pstr); return *this;char& mystring:operator(int n)static char ch = 0;if (n length | n 0)cout 数组越界 endl;return ch;elsereturn *(pstr + n);int main()mystring a(abde), b(defe);/mystring c(a);/cout c;cout a b endl;a = b;cout a endl;a += b;cout a a;cout a b)cout a字符串更大: a endl;if (a b)cout b字符串更大: b endl;if (a = b)cout a,b相等 a endl;if (a != b)cout a,b不相等 endl;a1 = q;cout a endl;实验心得:本次实验我们所学习的是函数的重载,函数的重载是为了满足不同环境下调用函数不同的问题。例如求最大值,我们三个值求最大值,两个值求更大值。在这里运用函数的重载我只需要定义一种函数为max,采用不同个数的形参就可以完毕,这样使读者更加的清晰你要在这个函数中所体现的意思。通过本次实验,我也着实感受到了一次编程的乐趣,从中也学到了诸多知识,如今C+的编程中我们所使用的语言更加的精简,没有C中那么多的繁琐,这次的实验也相对来说比较基本,知识为我么后来C+学习做好一种引子的作用,我相信下次的实验一定会是更加精彩的,可以让我有更多的体会,在C+中寻找到更大的乐趣和编程的动力。
展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 图纸专区 > 考试试卷


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!