Skip to content

Files

Latest commit

 

History

History
17 lines (15 loc) · 473 Bytes

File metadata and controls

17 lines (15 loc) · 473 Bytes

代码结构

- src
  - VehicleFactory.py # 具体工厂类,根据类型创建具体产品
  - Vehicle.py # 具体产品的抽象类或接口
  - Bus.py # 具体产品之一,实现或继承抽象
  - Car.py # 具体产品之一,实现或继承抽象
  - Motorcycle.py # 具体产品之一,实现或继承抽象
  - Van.py # 具体产品之一,实现或继承抽象

测试验证

$ cd ./factory-pattern/python
$ python test/test.py