python(24):工廠模式應用設計

1. 設計一個賣車的4S店,該怎樣作呢? # 定義車類 class Car(object): # 定義車的方法 def move(self): print("---車在移動---") def stop(self): print("---停車---") # 定義一個銷售車的店類 class CarStore(object): d
相關文章
相關標籤/搜索