上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
摘要: Book-深入设计模式-适配器模式 https://refactoringguru.cn/design-patterns/adapter 适配器模式 亦称: 封装器模式、Wrapper、Adapter 适配器模式是一种结构型设计模式, 它能使接口不兼容的对象能够相互合作。 解决方案 可以创建一个适配 阅读全文
posted @ 2023-03-05 20:17 Theseus‘Ship 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式-单例模式 https://refactoringguru.cn/design-patterns/singleton 单例模式 亦称: 单件模式、Singleton 单例模式是一种创建型设计模式, 让你能够保证一个类只有一个实例, 并提供一个访问该实例的全局节点。 单例模式同时 阅读全文
posted @ 2023-03-05 19:57 Theseus‘Ship 阅读(9) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式-原型模式 https://refactoringguru.cn/design-patterns/prototype 原型模式 亦称: 克隆、Clone、Prototype 原型模式是一种创建型设计模式, 使你能够复制已有对象, 而又无需使代码依赖它们所属的类。 解决方案 原型 阅读全文
posted @ 2023-03-05 19:42 Theseus‘Ship 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式-生成器模式 https://refactoringguru.cn/design-patterns/builder 生成器模式 亦称: 建造者模式、Builder 生成器模式是一种创建型设计模式, 使你能够分步骤创建复杂对象。 该模式允许你使用相同的创建代码生成不同类型和形式的 阅读全文
posted @ 2023-03-05 19:13 Theseus‘Ship 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式-抽象工厂模式 https://refactoringguru.cn/design-patterns/abstract-factory 抽象工厂模式 亦称: Abstract Factory 抽象工厂模式是一种创建型设计模式, 它能创建一系列相关的对象, 而无需指定其具体类。 阅读全文
posted @ 2023-03-05 18:15 Theseus‘Ship 阅读(7) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式-工厂方法模式 https://refactoringguru.cn/design-patterns/factory-method 工厂方法模式 亦称:虚拟构造函数、Virtual Constructor、Factory Method 工厂方法模式是一种创建型设计模式, 其在父 阅读全文
posted @ 2023-03-05 17:48 Theseus‘Ship 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Blog Theme-博客当前皮肤设置 2023/3/3 21:45:37 博客皮肤 SimpleMemory 博客侧边栏公告 <!-- SimpleMemory 博客皮肤 --> <script type="text/javascript"> window.cnblogsConfig = { in 阅读全文
posted @ 2023-03-03 21:47 Theseus‘Ship 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Book-深入设计模式 https://refactoringguru.cn/design-patterns https://github.com/RefactoringGuru https://github.com/RefactoringGuru/design-patterns-cpp 设计模式是 阅读全文
posted @ 2023-03-03 13:48 Theseus‘Ship 阅读(192) 评论(0) 推荐(0) 编辑
摘要: OS-Linux-菜鸟教程 转自 https://www.runoob.com/linux/linux-tutorial.html Linux 是开源的,遵循 GNU 通用公共许可证(GPL),任何个人和机构都可以自由地使用 Linux 的所有底层源代码,也可以自由地修改和再发布。 通常服务器使用 阅读全文
posted @ 2023-03-01 00:02 Theseus‘Ship 阅读(53) 评论(0) 推荐(0) 编辑
摘要: OS-Windows-powercfg 查看PC电池损耗 windows系统相关命令 powercfg powercfg /? 可以查看命令提示, powercfg /batteryreport 命令生成电池使用情况报告, Design capacity(电池设计容量); Full charge c 阅读全文
posted @ 2023-02-28 22:21 Theseus‘Ship 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 正则表达式-菜鸟教程 转自正则表达式,菜鸟教程 正则表达式(Regular Expression)是一种文本模式,包括普通字符(例如,a 到 z 之间的字母)和特殊字符(称为"元字符")。 正则表达式使用单个字符串来描述、匹配一系列匹配某个句法规则的字符串。 简单示例 ^[0-9]+abc$ ^ 为 阅读全文
posted @ 2023-02-28 19:08 Theseus‘Ship 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 正则表达式-30分钟入门教程 参考 正则表达式30min入门教程,菜鸟教程 在线测试工具: 菜鸟工具 RegexBuddy,付费 常用的元字符 代码 说明 ^ 匹配字符串的开始 $ 匹配字符串的结束 . 匹配除换行符以外的任意字符 \w 匹配字母或数字或下划线或汉字 \s 匹配任意的空白符 \d 匹 阅读全文
posted @ 2023-02-28 16:55 Theseus‘Ship 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 正则表达式-常用正则表达式 常用正则表达式 一、校验数字的表达式 数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数字:^\d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9] 阅读全文
posted @ 2023-02-28 16:31 Theseus‘Ship 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ISS High Definition Live Streaming Video of the Earth (HDEV) Formerly the site for the High Definition Earth-Viewing System (HDEV) : Operational: April 30, 2014 – End of Life: August 22, 2019. See more information below. Currently, live video of Earth is streaming from an external HD camera mounted on the ISS. The camera is looking toward Earth with an occasional solar panel passing through the view. 阅读全文
posted @ 2023-02-28 00:10 Theseus‘Ship 阅读(46) 评论(0) 推荐(0) 编辑
摘要: Tool-Git 转自 https://www.runoob.com/git/git-tutorial.html Git 快速入门 Git快速入门 Git简明指南https://www.runoob.com/manual/git-guide/ Git 完整命令手册地址:http://git-scm. 阅读全文
posted @ 2023-02-27 12:08 Theseus‘Ship 阅读(79) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
Live2D