赞
踩
Visual Studio Code C++环境配置及其简单操作
目录
1. 下载并安装 Visual Studio Code 编译器
登录官网:
Visual Studio Code - Code Editing. Redefined
选择操作系统进行下载.
也可以进入电脑自带软件商店下载.
登录下方网址下载MinGW-w64:
MinGW-w64 - for 32 and 64 bit Windows download | SourceForge.net
下载后需要解压再放到指定位置.
复制MinGW-64中 bin 文件夹的路径
点击 开始菜单 -> 点击 设置 -> 点击 系统 -> 点击 关于 -> 点击系统信息.
点击高级系统设置.
点击环境变量.
双击系统变量中的 path
点击新建 -> 将所复制的路径粘贴
打开Visual Studio Code后的界面:(一开始是黑的并且是英文).
为了后续操作方便先改为中文(需要重启): 点击左边栏目的扩展 -> 搜索Chinese -> 点击安装.
按Shift + Ctrl + p 打开搜索栏 -> 搜索颜色主题可更换颜色 .
点开扩展,搜索C++ 和Code runner安装插件.
由于Visual Studio Code是以文件夹的形式管理工程的,因此首先新建一个文件夹,然后通过Visual Studio Code打开此文件夹:
新建 hello.cpp 文件并输入程序:(后缀必须得是.cpp)
点击左侧的Debug按钮,选择添加配置(Add configuration),然后选择C++(GDB/LLDB),将自动生成launch.json文件,将鼠标放在各个语句上可以得到该语句的作用或意义: (false/true 自行根据需求更改)
另外,由于前面设置成中文模式,所以需要将launch.json 文件内的中文内容删除,例如’program’部分.
’program’后面的 hello.exe 是编译后的可执行文件.
配置编译和运行时需要的tasks.json文件.
按 shift + Ctrl + p 键 -> 输入 Tasks: Run task -> 点击 添加配置;
修改为下面的语句:
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": ["-g", "${file}", "-std=c++11", "-o", "${fileBasenameNoExtension}.out"]
}
]
}
点击界面左下角的齿轮,点击设置:
搜索setting,点击 在 settings.json 中编辑:
将该文件修改为下面的语句:
{
"C_Cpp_Runner.cStandard": "",
"C_Cpp_Runner.cppStandard": "",
"C_Cpp_Runner.msvcBatchPath": "",
"C_Cpp_Runner.warnings": [
"-Wall",
"-Wextra",
"-Wpedantic"
],
"C_Cpp_Runner.enableWarnings": true,
"C_Cpp_Runner.warningsAsError": false,
"C_Cpp_Runner.compilerArgs": [],
"C_Cpp_Runner.linkerArgs": [],
"C_Cpp_Runner.includePaths": [],
"C_Cpp_Runner.includeSearch": [
"*",
"**/*"
],
"C_Cpp_Runner.excludeSearch": [
"**/build",
"**/build/**",
"**/.*",
"**/.*/**",
"**/.vscode",
"**/.vscode/**"
],
"C_Cpp.errorSquiggles": "Enabled"
}
点击右下方的 win32,点击上方栏目的 编辑配置(JSON):
该文件如下:{
"configurations": [
{
"name": "windows-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"compilerPath": "D:\Band.zip\x86_64-8.1.0-release-posix-seh-rt_v6-rev0\mingw64\bin\gcc",
"cStandard": "${default}",
"cppStandard": "${default}",
"intelliSenseMode": "windows-gcc-x64",
"compilerArgs": []
}
],
"version": 4
}
其中的"compilerPath"项是gcc 的路径:
打开建立工程时新建的文件夹,我这里是.vscode,如果存在以上四个 json 文件,说明配置成功:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。