⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 this a good book.
💻 CPP
字号:
#include<iostream.h>

class C0
{
	int x;
public:
	C0(int a=0)
	{
		x = a;
	}
	C0 fun(int i)
	{
		this->x += i;
		/*******found*****/
		return this;
	}
	/*******found*****/
	void print(C0& t)
	{
		cout<<t.x <<endl;
	}
};

void main()
{
	/*******found*****/
	C0* obj=new C0[5];

	C0 obj2;
	obj2 = obj->fun(10);

	C0::print(obj2);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -