コード例 #1
0
ファイル: main.cpp プロジェクト: nizihabi/Design-Pattern
int main()
{
	Computer *lenovo = new Microsoft();
	lenovo->InstallOS(new Windows());

	Computer *Mac = new Apple();
	Mac->InstallOS(new IOS());

	delete lenovo;
	delete Mac;
	
}