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

📄 main.cpp

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

class C0
{
public:
	C0(int t)
	{
		cout<<t<<endl;
	}
	/*******found******/
	int static operator int()
	{
		cout<<"C0 int"<<endl;
		/*******found******/
		return 0;
	}
};
class C1
{
public:
	operator C0()
	{
		cout<<"C1 C0"<<endl;
		/*******found******/
		
	}
};


int main()
{
	C1 obj;
	C0 obj2 = C0(obj);
	return obj2<<10;
}

⌨️ 快捷键说明

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