上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 118 下一页
摘要: AbstractFactory.py ## 抽象工厂模式 Abstract Factory Pattern from __future__ import annotations from abc import ABC, abstractmethod class AbstractFactory(ABC 阅读全文
posted @ 2022-10-18 21:19 ®Geovin Du Dream Park™ 阅读(27) 评论(0) 推荐(0)
摘要: Adapte.py ## 适配器模式 Adapte Pattern geovindu, Geovin Du eidt class Target: """ The Target defines the domain-specific interface used by the client code. 阅读全文
posted @ 2022-10-18 21:10 ®Geovin Du Dream Park™ 阅读(25) 评论(0) 推荐(0)
摘要: //win 11 22H2 64位电脑测试 c# 10 .net core 6 Console.WriteLine("Hello from a Top Level Program!"); Console.WriteLine(Environment.OSVersion.VersionString); 阅读全文
posted @ 2022-10-17 21:03 ®Geovin Du Dream Park™ 阅读(30) 评论(0) 推荐(0)
摘要: /** * 版权所有 2022 涂聚文有限公司 * 许可信息查看: * 描述: * 空对象模式 null object Pattern * 历史版本: JDK 14.02 * 2022-09-12 创建者 geovindu * 2022-09-12 添加 Lambda * 2022-09-12 修改 阅读全文
posted @ 2022-10-16 22:21 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0)
摘要: var stop = function() { var stream = video.srcObject; var tracks = stream.getTracks(); for (var i = 0; i < tracks.length; i++) { var track = tracks[i] 阅读全文
posted @ 2022-10-16 00:03 ®Geovin Du Dream Park™ 阅读(38) 评论(0) 推荐(0)
摘要: /** * 版权所有 2022 涂聚文有限公司 * 许可信息查看: * 描述: * Core Java, Volume I: Fundamentals, Twelfth Edition by Cay S.Horstamnn * Core Java, Volume II: Advanced Featu 阅读全文
posted @ 2022-10-14 23:49 ®Geovin Du Dream Park™ 阅读(45) 评论(0) 推荐(0)
摘要: /// <summary> /// 空对象模式 null object pattern /// geovin,Geovin Du eidt /// </summary> interface IVehicle { void Travel(); } /// <summary> /// Bus class 阅读全文
posted @ 2022-10-13 23:02 ®Geovin Du Dream Park™ 阅读(28) 评论(0) 推荐(0)
摘要: /// <summary> /// 简单工厂模式 Simple Factory Pattern /// geovindu,Geovin Du edit /// 动物 /// </summary> public interface IAnimal { /// <summary> /// /// </s 阅读全文
posted @ 2022-10-12 23:19 ®Geovin Du Dream Park™ 阅读(23) 评论(0) 推荐(0)
摘要: /// <summary> /// 解释器模式 Interpreter Pattern /// geovindu, Geovin Du edit /// </summary> interface Employee { /// <summary> /// 是否解释 /// </summary> /// 阅读全文
posted @ 2022-10-12 23:02 ®Geovin Du Dream Park™ 阅读(30) 评论(0) 推荐(0)
摘要: /// <summary> ///责任链模式 Chain of Responsibility Pattern 亦称: 职责链模式、命令链、CoR、Chain of Command、Chain of Responsibility /// geovindu,Geovin Du edit /// </su 阅读全文
posted @ 2022-10-12 06:24 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0)
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 118 下一页