摘要: 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™ 阅读(28) 评论(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™ 阅读(35) 评论(0) 推荐(0)