使用Visual Studio Code開發(編譯、調試)C++程序

整體安裝步驟

  1. 安裝VSC(Visual Studio Code)
  2. 安裝C/C++編譯器(如MinGW-w64),而後配置好環境變量。//完成這步便可在VSC的終端(命令行)下編譯、運行.cpp程序了。
    • 配置操做系統的Path變量:在Path變量中加入mingw的安裝路徑,如d:/mingw64/bin/
  3. 安裝並配置Code Runner插件,一鍵編譯運行。
    • 打開VSC中的擴展管理界面(文件-首選項-擴展,或者ctrl+shift+x),搜索Code Runner。
    • 容許控制檯輸入配置:在"文件-首選項-設置-用戶設置-擴展-Run Code Configuration",勾選Run In Terminal
  4. 安裝並配置Intellisense。請參見Visual Studio Code include file not found in include directory
    • 通常若是你新建的是.cpp,VSC會自動提示你安裝相應插件。
  5. 解決中文亂碼問題
    • 配置:File-Settings,搜索encoding,勾選"Auto Guess Encoding"。
  6. 配置調試環境
    • 需配置launch.json與task.json
    • 建立launch.json:按Ctrl+Shift+P,輸入Tasks: Configure Task,選擇Create tasks.json file from templates,選擇Others
    • 建立task.json:好像按F5就會提示建立。

task.json(用於build)html

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build hello",
            "type": "shell",
            "command": "g++",
            "args": [
                "-g","${file}","-o","${fileDirname}/${fileBasenameNoExtension}.exe"  //表明build的是當前文件
            ],
            "group": {                   //該配置:按ctrl+shift+b就能夠直接build當前文件
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

launch.json(用於調試)shell

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "(gdb) Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}/${fileBasenameNoExtension}.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": true,
            "MIMode": "gdb",
            "miDebuggerPath": "d:/mingw64/bin/gdb.exe",  //mingw的調試程序所在路徑
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true                    
                }
            ],
            "preLaunchTask": "build hello" //要與tasks.json中的label屬性值同樣
        }
    ]
}

經常使用快捷鍵

塊選擇:Ctrl+Alt+上下左右鍵
行上下移:Ctrl+Shift+上下鍵
刪除行:Ctrl+L
格式化文本:Shift+Alt+F
小代碼塊:Tab
命令面板:Ctrl+Shift+P
並排打開文件:Ctrl+\json

參考資料

windows下使用vscode編寫運行以及調試C/C++
C/C++ for Visual Studio Code (Preview)windows

相關文章
相關標籤/搜索