Effective C++笔记 📒 让自己习惯C++ 条款01: 视C++为一个语言联邦 C++主要的4个次语言 C Blocks; statements; preprocessor; built-in data types; arrays; pointers; ... Object-Oriented C++ Classes; encapsulation(封装); inheritance; polymorphism virtual 2022-10-06 books #notes
Git 笔记 📒 准备工作 安装 官网下载 macOS 1brew install git Linux 1sudo apt-get install git 查看版本信息/是否安装 1git --version 生成 SSH 密钥 输入 ls -al ~/.ssh 查看是否存在 SSH keys 12ls -al ~/.ssh# Lists the files in your .ssh directory, if t 2022-07-13 tools #notes #Git