forked from FengJungle/DesignPattern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
23 lines (17 loc) · 686 Bytes
/
main.cpp
File metadata and controls
23 lines (17 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include "FactoryMethod.h"
#include <memory>
int main()
{
printf("工厂方法模式\n");
// 定义工厂类对象和产品类对象
std::shared_ptr<AbstractFactory> fac = make_shared<BasketballFactory>();
std::shared_ptr<AbstractSportProduct> product = std::shared_ptr<AbstractSportProduct>(fac->getSportProduct());
fac = make_shared<FootballFactory>();
// product = std::shared_ptr<AbstractSportProduct>(fac->getSportProduct());
product = std::shared_ptr<AbstractSportProduct>(fac->getSportProduct());
fac = make_shared<VolleyballFactory>();
product = std::shared_ptr<AbstractSportProduct>(fac->getSportProduct());
system("pause");
return 0;
}