摘要: GeovinDuMemento.py # 备忘录模式 Memento Pattern GeovinDuMemento.py # class Memento: def __init__(self, value): self.state = value def SetState(self, value) 阅读全文
posted @ 2022-10-27 22:28 ®Geovin Du Dream Park™ 阅读(68) 评论(0) 推荐(0)
摘要: GeovinDuCommand.py # 命令模式 Command Pattern GeovinDuCommand.py # Web Browser: class WebBrowser(object): def __init__(self): self.bookmarks = [] self.cur 阅读全文
posted @ 2022-10-27 22:13 ®Geovin Du Dream Park™ 阅读(27) 评论(0) 推荐(0)