本文主要是介绍第12周阅读程序(2),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题及代码:
/**copyright (t) 2016,烟台大学计算机学院*All rights reserved.*文件名称:test.cpp*作者:张晴晴*完成日期:2016年5月23日*版本号:v1.0*问题描述:*输入描述:*程序输出:*/#include <iostream>
using namespace std;
class Sample
{
private:int x;
public:Sample() {}Sample (int a){x=a;}void disp(){cout<<"x="<<x<<endl;}Sample operator+(Sample &s);
};
Sample Sample:: operator+( Sample &s)
{return Sample(x+s.x);
}
int main()
{Sample obj1(20);Sample obj2(20);Sample obj3;obj3=obj1+obj2;obj3.disp();return 0;
}
运行结果:
学习心得:
重载运算符为成员函数。
这篇关于第12周阅读程序(2)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!