91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ubuntu下怎么安裝并配置VS Code編譯C++

發布時間:2022-04-13 16:25:45 來源:億速云 閱讀:356 作者:iii 欄目:編程語言

這篇文章主要介紹“Ubuntu下怎么安裝并配置VS Code編譯C++”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Ubuntu下怎么安裝并配置VS Code編譯C++”文章能幫助大家解決問題。

ubuntu下安裝并配置vs code編譯c++

安裝vs code

sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make
sudo umake web visual-studio-code

然后按a直接默認同意就可以。

安裝插件

打開vs code后,按crtl + shift + p調出命令行,然后搜索c++,安裝微軟自己開發的那個。

同樣可以安裝c++ intellisense插件,用于自動補全代碼。

配置launch.json和tasks.json

注意vs code只能打開源碼所在的文件夾,而不是直接打開源碼文件,否則下面將無法進行!

打開源碼所在文件夾后,在該文件夾中打開源碼。按f5鍵,選擇c++,

Ubuntu下怎么安裝并配置VS Code編譯C++

然后會自動生成launch.json文件,下面只需要修改兩個地方

"program": "enter program name, for example \${workspaceroot}/a.out",

改為

"program": "${workspaceroot}/a.out",

"cwd": "\${workspaceroot}",

改為

"cwd": "${workspaceroot}",

完整的launch.json

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "(gdb) launch",
      "type": "cppdbg",
      "request": "launch",
      "program": "${workspaceroot}/a.out",
      "args": [],
      "stopatentry": false,
      "cwd": "${workspaceroot}",
      "environment": [],
      "externalconsole": true,
      "mimode": "gdb",
      "setupcommands": [
        {
          "description": "enable pretty-printing for gdb",
          "text": "-enable-pretty-printing",
          "ignorefailures": true
        }
      ]
    }
  ]
}

然后,調出命令行,輸入task runner,選擇others

Ubuntu下怎么安裝并配置VS Code編譯C++ 

此時將自動生成tasks.json

將其中的

"command": "echo",

改為

"command": "g++",

"args": ["hello world"],

改為

"args": ["-g","${workspaceroot}/main.cpp"],

注意這里的main.cpp要和你當前路徑的源碼名稱一致。

完整的tasks.json

{
  // see https://go.microsoft.com/fwlink/?linkid=733558
  // for the documentation about the tasks.json format
  "version": "0.1.0",
  "command": "g++",
  "isshellcommand": true,
  "args": ["-g","${workspaceroot}/main.cpp"],
  "showoutput": "always"
}

運行測試

隨便編寫個代碼

#include<iostream>
using namespace std;

int main()
{
  cout<<"hello vs code"<<endl;
  return 0;
}

按crtl + shift + b構建,按f5運行,發現終端一閃而過,什么都沒有輸出。于是考慮windows下的辦法。

#include<iostream>
#include<stdlib.h>
using namespace std;

int main()
{
  cout<<"hello vs code"<<endl;
  system("pause");
  return 0;
}

同樣并沒有卵用。那就換一種方式。

#include<iostream>
#include<stdio.h>
using namespace std;

int main()
{
  cout<<"hello vs code"<<endl;
  getchar();
  return 0;
}

按crtl + shift + b構建,按f5運行,程序完美輸出。有圖為證,哈哈

Ubuntu下怎么安裝并配置VS Code編譯C++

后記:

期間在終端里執行了以下操作

sudo apt-get install clang

如果提示clang有錯可以運行該命令,安裝clang。

關于“Ubuntu下怎么安裝并配置VS Code編譯C++”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

商水县| 长沙市| 禄丰县| 沈阳市| 金坛市| 乌苏市| 同德县| 永康市| 新和县| 永嘉县| 巴里| 曲松县| 宜都市| 伊宁县| 溧水县| 万源市| 石渠县| 札达县| 基隆市| 青冈县| 辉南县| 安达市| 新昌县| 台州市| 锡林浩特市| 思茅市| 洱源县| 青铜峡市| 赤城县| 泗阳县| 正定县| 北京市| 阳曲县| 合水县| 祁阳县| 钟祥市| 柳江县| 凌海市| 句容市| 读书| 金阳县|