加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
5.cpp 512 Bytes
一键复制 编辑 原始数据 按行查看 历史
pluto 提交于 2021-06-28 22:47 . 写了几个题目
/*
* @Author: chen haoxuan
* @Date: 2021-06-28 22:00:33
* @LastEditTime: 2021-06-28 22:08:13
*/
#include<iostream>
using namespace std;
class point
{
public:
point(int val){x=val;}
point& operator++()
{
x++;
return *this;
}
point operator++(int)
{
point old=*this;
++(*this);
return old;
}
int GetX() const {return x;}
private:
int x;
};
int main()
{
point a(10);
cout<<(++a).GetX();
cout<<a++.GetX();
return 0;
}
/*
11 11
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化