06 2023 档案
摘要: # 基本数据类型 | 蓝图 | C++ | sizeof | 描述 | | | | | | | Boole
阅读全文
摘要:# 1. 新建c++工程  # 2. 打开world setting 
阅读全文
摘要:# Alt + 鼠标选择  # Alt + Shift + 方向键  # 注释效果 ## 输入`/**
阅读全文
摘要:# 1. 新建一个测试目录hello及一些必要文件 ``` D:\HELLO\HELLOCPP │ CMakeLists.txt └─ main.cpp ``` ## CMakeLists.txt ```CMakeLists.txt # 工程名 project(Hello) # 生成目标 add_e
阅读全文
摘要:> https://course.rs/about-book.html
阅读全文
摘要:# 1. 下载RUSTUP-INIT.EXE 下载地址:https://www.rust-lang.org/tools/install ![image](https://img2023.cnblogs.com/blog/2065202/202306/2065202-20230615130904110
阅读全文
摘要:# autocrlf ```bash # 提交时转换为LF,检出时转换为CRLF git config --global core.autocrlf true # 提交时转换为LF,检出时不转换 git config --global core.autocrlf input # 提交检出均不转换 g
阅读全文
摘要:# 下载仓库 ``` bash git clone git@github.com:.../blog.git ``` # 配置默认编辑器为vim ``` bash git config --global core.editor vim # --edit 编辑配置 git config -e # 编辑全
阅读全文