上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 107 下一页
摘要: DuPrototype.py import copy ## 原型模式 Prototype Pattern DuPrototype。py class SelfReferencingEntity: def __init__(self): self.parent = None def set_parent 阅读全文
posted @ 2022-10-20 21:50 ®Geovin Du Dream Park™ 阅读(25) 评论(0) 推荐(0) 编辑
摘要: DuBridge.py # 桥接模式 Bridge Pattern # DuBridyge.py editor: geovindu, Geovin Du from __future__ import annotations from abc import ABC, abstractmethod cl 阅读全文
posted @ 2022-10-19 22:30 ®Geovin Du Dream Park™ 阅读(26) 评论(0) 推荐(0) 编辑
摘要: DuBuilder.py # 生成器模式 Builder Pattern from __future__ import annotations from abc import ABC, abstractmethod from typing import Any class Builder(ABC): 阅读全文
posted @ 2022-10-19 17:57 ®Geovin Du Dream Park™ 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 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™ 阅读(17) 评论(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™ 阅读(19) 评论(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™ 阅读(22) 评论(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™ 阅读(17) 评论(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™ 阅读(31) 评论(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™ 阅读(38) 评论(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™ 阅读(21) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 107 下一页