上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 107 下一页
摘要: /** * 版权所有 2022 涂聚文有限公司 * 许可信息查看: * 描述: * * 历史版本: JDK 17.01 * 2022-09-12 创建者 geovindu * 2022-09-12 添加 Lambda * 2022-09-12 修改:date * 接口类 * 2022-09-12 修 阅读全文
posted @ 2022-10-30 18:51 ®Geovin Du Dream Park™ 阅读(94) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GeovinduDu { [AttributeU 阅读全文
posted @ 2022-10-29 21:36 ®Geovin Du Dream Park™ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Single Responsibility Principle SOLID Design Patterns SOLID is an acronym for five principles of architecture.S – Single Responsibility PrincipleO – O 阅读全文
posted @ 2022-10-28 22:30 ®Geovin Du Dream Park™ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 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™ 阅读(62) 评论(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™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: GeovinDuState.py #状态模式 State Pattern class ComputerState(object): name = "state" allowed = [] def switch(self, state): """ Switch to new state """ if 阅读全文
posted @ 2022-10-26 23:43 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: GeovinDuTemplate.py # 模板方法模式 Template Method Pattern def get_text(): return "text 文件" """ method to get the xml version of file""" def get_xml(): retu 阅读全文
posted @ 2022-10-26 22:49 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要: GeovinDuVisitor.py # 访问者模式 Visitor Pattern GeovinDuVistitor.py class Courses_At_GFG: def accept(self, visitor): visitor.visit(self) def teaching(self, 阅读全文
posted @ 2022-10-25 23:10 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: GeovinDuStrategy.py # 策略模式 Strategy Pattern Types of trading strategies: class RiskyTradingStrategy(object): def MakeTrades(self): print("进行高风险交易!") c 阅读全文
posted @ 2022-10-25 21:54 ®Geovin Du Dream Park™ 阅读(21) 评论(0) 推荐(0) 编辑
摘要: GeovinDuObserver.py # 观察者模式 Observer Pattern # The Observer class that recieves updates from the ticker on a specific symbol: class TickerObserver(obj 阅读全文
posted @ 2022-10-24 22:05 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 107 下一页