摘要: 搜索技巧 files to include 搜索范围 搜索特定目录下的所有子目录内的特定文件后缀 xxx/yyy/**/*.{c,cpp} **用于匹配某一特定目录下的所有子目录 {c,cpp}同时匹配两种文件后缀格式 阅读全文
posted @ 2026-04-15 09:40 EndlessINF 阅读(2) 评论(0) 推荐(0)
摘要: 文档记录 编辑器相关 新手-PyCharm下载 推荐:vscode-丰富插件支持 轻量化 这两点理由就足够了 插件相关 python autopep8 python语法 python文件相互引用 文件相关 文件读写 遍历目录 阅读全文
posted @ 2025-07-23 15:05 EndlessINF 阅读(3) 评论(0) 推荐(0)
摘要: PC WinDirStat 用于分析磁盘空间占用情况 官网下载地址 阅读全文
posted @ 2025-07-22 16:08 EndlessINF 阅读(9) 评论(0) 推荐(0)
摘要: 原文链接 单例模式及特殊类的设计 创建类-特殊场景 一个不能被拷贝的类 点击查看代码 class Test { public: Test(const Test &other) = delete; Test &operator(const Test &other) = delete; } 一个不能被继 阅读全文
posted @ 2025-07-22 11:00 EndlessINF 阅读(20) 评论(0) 推荐(0)