摘要: 一、简单工厂模式 1 # coding : utf-8 2 # create by ztypl on 2017/5/24 3 4 from abc import abstractmethod, ABCMeta 5 6 class Payment(metaclass=ABCMeta): 7 @abst 阅读全文
posted @ 2017-09-19 18:29 willianflasky 阅读(132) 评论(0) 推荐(0) 编辑