# c-learn **Repository Path**: tiger-with-wings/c-learn ## Basic Information - **Project Name**: c-learn - **Description**: 学习 C++ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-14 - **Last Updated**: 2024-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 在 Mac Book 上 通过 VS Code 学习 C++ 的笔记 搭建调试环境,并学习 C++ 知识。 ## 依赖插件 1. C/C++(作者:Microsoft)。 2. CodeLLDB(作者:Vadim Chugunov)。 3. Code Runner(作者:Jun Han)。 ## 插件配置 ### C/C++ 见 .vscode/c_cpp_properties.json、.vscode/tasks.json ### CodeLLDB 见 .vscode/launch.json ### Code Runner 在 code-runner.executorMap 配置项中,修改针对 C 和 C++ 相关的配置 1. "c": "cd $dir && gcc $dir/**/*.c -o $fileNameWithoutExt && $dir$fileNameWithoutExt", 2. "cpp": "cd $dir && g++ $dir/**/*.cpp -o $fileNameWithoutExt && $dir$fileNameWithoutExt",