上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: Typescript 有一种统一的语言处理模块的导入和导出,在编译时可以根据最终js文件应用到哪一种模块系统,根据模块系统的规范,生成代码 原始Ts文件 import m = require("mod"); export let t = m.something + 1; 下面是TS根据不同模块系统, 阅读全文
posted @ 2022-11-02 14:14 内心澎湃的水晶侠 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 备忘录模式 概念 Memento is a behavioral design pattern that lets you save and restore the previous state of an object without revealing the details of its im 阅读全文
posted @ 2022-10-06 15:10 内心澎湃的水晶侠 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 中介者模式 概念 Mediator is a behavioral design pattern that lets you reduce chaotic dependencies between objects. The pattern restricts direct communication 阅读全文
posted @ 2022-10-06 14:36 内心澎湃的水晶侠 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 迭代器模式 概念 Iterator is a behavioral design pattern that lets you traverse elements of a collection without exposing its underlying representation (list, 阅读全文
posted @ 2022-10-06 14:01 内心澎湃的水晶侠 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 责任链模式 概念 Chain of Responsibility is a behavioral design pattern that lets you pass requests along a chain of handlers. Upon receiving a request, each 阅读全文
posted @ 2022-10-06 11:33 内心澎湃的水晶侠 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 命令模式 别名 Action、Transaction、Command 概念 Command is a behavioral design pattern that turns a request into a stand-alone object that contains all informat 阅读全文
posted @ 2022-10-06 10:58 内心澎湃的水晶侠 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 本文用简洁的方法,总结常用的设计模式 设计模式主要分成三大类,每一类都有一些具体模式,总结如下 创建型模式 抽象工厂模式 生成器模式 原型模式 单例模式 结构型模式 适配器模式 桥接模式 组合模式 装饰模式 外观模式 享元模式 代理模式 行为模式 抽象工厂模式 Factory Method is a 阅读全文
posted @ 2022-10-01 19:50 内心澎湃的水晶侠 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 窗体基本使用的API CreateWindowExW HWND CreateWindowExA( [in] DWORD dwExStyle, [in, optional] LPCSTR lpClassName, [in, optional] LPCSTR lpWindowName, [in] DWO 阅读全文
posted @ 2022-09-25 10:53 内心澎湃的水晶侠 阅读(196) 评论(0) 推荐(0) 编辑
摘要: MVC 架构 MVP 架构 MVVM 架构 网上的一些常用架构解释图: MVC架构 MVP架构 阅读全文
posted @ 2022-09-17 16:09 内心澎湃的水晶侠 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 举例这个开发设计时的窗体: 编写代码,通过API获取的元素结构 这个方法是严格按照以下目录结构编写结果的 VisualStateManager 一组VisualStateGroup包含一批互斥的VisualState 每个VisualState对应一种样式,通过Manager可以不断的切换Visua 阅读全文
posted @ 2022-09-17 16:05 内心澎湃的水晶侠 阅读(39) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页