一、简介
??大学期间用的C++编译环境一直是Visual Studio 2010 ,最近碰到了一个赛题,需要用C++11的环境,且给了基础代码。基础代码在Visual Studio 2010 不能成功运行,显示以下错误:  ??后经查询,是因为Visual Studio 2010 至 2013 这几个版本仅支持部分的C++11特性,所以报错,又想到Visual Studio Code 和其都是一家,也有很多人推荐,就想着能不能通过它来实现C++环境的编译,毕竟如果下载高版本的Visual Studio 不仅大不说,开启速度在我的破电脑上也会比较慢。
二、准备工具
三、配置文件
??关于Visual Studio Code 对C++环境的配置方法应该有好多种,我这里用到了其中的两种。
1、配置Code Runner
- 找到扩展插件,点击工具图标,找到拓展设置
 - 进入到拓展设置,找到
Code-runner: Executor Map 进行编辑  - 找到
“cpp” ,在指定位置添加-std=c++11  - 然后重启
Visual Studio Code ,想运行C++程序时,点击右上方的开始按钮即可   - 在code-runner: run in terminal勾选下方可选项可解决在输出的只读框中输入

2、运行和调试配置
 ??在这里我们需要进行两项配置,一项是配置launch.json ,一项是配置tasks.json ,都有模板,直接抄模板就可以,只需要改动其中的mingw引用路径 即可
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "C++ (gdb) Launch",
"preLaunchTask": "g++.exe build active file",
"type": "cppdbg",//只能为cppdbg
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",//调试程序的路径名称
"args": [],//调试传递参数
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\mingw64\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++.exe build active file",
"command": "C:\\mingw64\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\\mingw64\\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
- 配置完毕之后,即可通过顶部导航栏上的运行进行调试运行
|