ubuntu下vscode基础使用(编译运行c/c++)
程序员文章站
2024-02-29 12:31:34
...
一、下载需要的负载
搜索c++,下载这个负载
和这个负载
ok完成。
二、打开文件夹写代码
1.创建文件
如果第一次用,推荐先自己找一个位置,用来存放vscode编译的代码。新建一个文件夹,然后用
code ~(文件夹名)
打开vscode。
2.在文件管理那块创建一个main.cpp 用来写程序
比如
3.去编译那块点创建launch.json 文件。
然后选择c++
然后点默认配置。
这里生成了一个launch.json,把里面program $之前的删了
改为
“program”: " ${workspaceFolder}/a.out",
4.创建tasks.json
回到main.cpp的那个文件
按Ctrl+alt+p进入命令界面
选择配置任务(如果没有的话,输入tasks进行搜索,选配置任务:configure tasks)
然后使用模板创建tasks.json
选择others
修改里面的内容
原来的内容
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "echo Hello"
}
]
}
修改后的内容
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "g++",
"args": ["-g", "${file}"]
}
]
}
5.编译运行
编译
保存两个json文件(很重要!!!!!!)
回到main.cpp里面,
Ctrl+alt+b编译,
build
继续而不扫描(第一个)
运行
然后进运行那里点运行(很小一个绿色三角)
就能在终端看到运行结果了。
如果失败了,去你的文件夹看看编译出来那个可执行程序叫啥,然后把launch.json里面的program的a.out改为你那个可执行文件的名字,再次运行就行了
上一篇: Unity 拖拽UI对象