02 2025 档案

摘要:【sftp】sftp 操作 1. 登录 ```bash #密码登录 sftp -P 22 zhangsan@192.168.0.100 #秘钥登录 sftp -P 22 -i ~/.ssh/id_rsa zhangsan@192.168.0.100 ``` 2. 更改远程工作目录 ```bash c 阅读全文
posted @ 2025-02-19 11:55 ReRound 阅读(3) 评论(0) 推荐(0) 编辑
摘要:【MSVC】MSVC 配置 MSVC 编译器路径 - 新建变量: WK10_BIN > C:\Program Files (x86)\Windows Kits\10\bin WK10_INCLUDE > C:\Program Files (x86)\Windows Kits\10\Include\1 阅读全文
posted @ 2025-02-19 10:20 ReRound 阅读(7) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/649753530 阅读全文
posted @ 2025-02-18 09:09 ReRound 阅读(0) 评论(0) 推荐(0) 编辑
摘要:【vcpkg】安装与使用 安装 mkdir /path/to/vcpkg_dir cd /path/to/vcpkg_dir git clone https://github.com/microsoft/vcpkg cd vcpkg ./bootstrap-vcpkg.bat 更新 vcpkg cd 阅读全文
posted @ 2025-02-07 10:07 ReRound 阅读(255) 评论(0) 推荐(0) 编辑
摘要:【CPP】调用父类的重写方法 在C++中,如果你有一个子类重写了父类的方法,你可以通过以下几种方式调用父类的重写方法: 1. 使用作用域解析运算符 :: 你可以使用作用域解析运算符 :: 来显式调用父类的方法。 class Parent { public: void print() { std::c 阅读全文
posted @ 2025-02-06 10:01 ReRound 阅读(14) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示