加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dm.cpp 765 Bytes
一键复制 编辑 原始数据 按行查看 历史
dmdada 提交于 2018-06-29 22:43 . class test
#include<iostream>
using namespace std;
class mystring
{
private:
int x;
int y;
public:
mystring(int a,int b)
{
x=a;
y=b;
}
mystring(const mystring &c)
{
x=c.x;
y=c.y;
}
mystring& operator =(const mystring &c)
{
if (this==&c)
{
return *this;
}
x=c.x;
y=c.y;
return *this;
}
int sum();
int add();
~mystring()
{
cout<<"delelet class!"<<endl;
}
};
int mystring::sum()
{
return x-y;
}
int mystring::add()
{
return x+y;
}
int main()
{
mystring A(3,1);
mystring B=A;
mystring C(10,20);
mystring* ptr=&C;
cout<<A.add()<<endl;
cout<<B.sum()<<endl;
cout << ptr->add() <<endl;
cout << ptr->sum() <<endl;
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化