摘要: 组合模式 1. 运用递归 2. 组合模式:分透明和安全 代码实现: 项目提成 namespace CompositePattern { public abstract class AbstractDomain { public string Name { get; set; } public int 阅读全文
posted @ 2020-12-02 14:35 NiKaFace 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 桥接模式 1.解决多维度问题 2.变化封装 代码实现: 组合 变化封装类 减少子类的数量 手机系统桥接 namespace BridgePattern.Bridge { public interface ISystem { public string GetSystem(); public stri 阅读全文
posted @ 2020-12-02 11:46 NiKaFace 阅读(107) 评论(0) 推荐(0) 编辑