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

📄 bridge.cpp

📁 自己编写的关于设计模式中的桥模式的应用例子
💻 CPP
字号:
// Bridge.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"

#include "Window.h"
#include "WindowImp.h"
#include "IconWindow.h"
#include "ApplicationWindow.h"


int _tmain(int argc, _TCHAR* argv[])
{
	Window* pW = new IconWindow();
	pW->Show();

	pW = new ApplicationWindow();
	pW->Show();

	delete pW;
	pW = NULL;

	return 0;
}

⌨️ 快捷键说明

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