摘要: 创建型模式 1 工厂模式 简单工厂模式:一个工厂可以生成多个对象 class Shape(object): def draw(self): raise NotImplementedError class Circle(Shape): def draw(self): print('draw circl 阅读全文
posted @ 2021-03-31 16:34 pythoner_wl 阅读(169) 评论(0) 推荐(0) 编辑