摘要: title: "Photoshop按比例裁剪压缩图片" date: 2023-08-03T14:05:25+08:00 tags: ["Photoshop"] categories: [] draft: false toc: true 1.选择侧边栏的裁剪工具,然后修改裁剪比例,点击对号 2.点击 阅读全文
posted @ 2023-08-03 21:32 devin1024 阅读(158) 评论(0) 推荐(0)
摘要: title: "Systemd教程" date: 2023-07-31T16:05:25+08:00 tags: ["Linux运维"] categories: [] draft: false toc: true Systemd 入门教程:实战篇 - 阮一峰的网络日志 配置文件 $ systemct 阅读全文
posted @ 2023-07-31 21:16 devin1024 阅读(64) 评论(0) 推荐(0)
摘要: title: "Docker常用命令" date: 2023-07-31T12:05:25+08:00 tags: ["Linux运维", "Docker"] categories: [] draft: false toc: true Docker — 从入门到实践 Docker Guide 清理D 阅读全文
posted @ 2023-07-31 20:58 devin1024 阅读(52) 评论(0) 推荐(0)
摘要: title: "WireGuard配置教程" date: 2023-07-30T12:10:05+08:00 tags: ["Linux运维", "WireGuard", "Docker"] categories: [] draft: false toc: true Run WireGuard VP 阅读全文
posted @ 2023-07-30 20:58 devin1024 阅读(8083) 评论(0) 推荐(0)
摘要: title: "Docker内显示图形界面" date: 2023-07-28T16:05:25+08:00 tags: ["Linux运维", "Docker", "Qt"] categories: [] draft: false toc: true 关于X11 x(7) - Linux man 阅读全文
posted @ 2023-07-29 00:19 devin1024 阅读(785) 评论(0) 推荐(0)
摘要: title: "调用成员模板" date: 2023-07-20T14:05:25+08:00 tags: ["C++"] categories: [] draft: false toc: true C++访问成员模板需要加template关键字 #include <iostream> using 阅读全文
posted @ 2023-07-20 00:07 devin1024 阅读(18) 评论(0) 推荐(0)
摘要: title: "vector的push_back与emplace_back" date: 2023-07-17T14:05:25+08:00 tags: ["C++"] categories: [] draft: false toc: true push_back与emplace_back #inc 阅读全文
posted @ 2023-07-17 12:51 devin1024 阅读(65) 评论(0) 推荐(0)
摘要: title: "位域用法" date: 2023-07-13T14:05:25+08:00 tags: ["C++"] categories: [] draft: false toc: true 如果有字段定义为int类型的话,那么符号位的判断需要特别注意。 例如:下面的 B::f2 字段是有符号类 阅读全文
posted @ 2023-07-13 16:51 devin1024 阅读(26) 评论(0) 推荐(0)
摘要: title: "函数重载及其匹配顺序" date: 2023-06-18T14:05:25+08:00 tags: ["C++"] categories: [] draft: false toc: true 1.函数重载 概念:同一个作用域内,同名函数,参数列表不同(参数个数、类型或顺序不同)。 与 阅读全文
posted @ 2023-06-18 23:38 devin1024 阅读(181) 评论(0) 推荐(0)
摘要: title: "重载、覆盖、隐藏" date: 2023-06-18T14:05:25+08:00 tags: ["C++"] categories: [] draft: false toc: true C++类层次中的同名函数,有三种关系: 1.重载****(overload) 概念:相同的范围( 阅读全文
posted @ 2023-06-18 23:35 devin1024 阅读(33) 评论(0) 推荐(0)