我是靠谱客的博主 鳗鱼白云,最近开发中收集的这篇文章主要介绍VSCODE运行C程序的时候如何同时打开两个终端,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

      编写UDP客户端和服务端的时候,需要同时运行两个终端来模拟通讯。我使用的IDE是VSCODE,由于一开始配置C++环境的时候, launch.json中只配置了一个shell,所以只能同时打开一个 。我们只要在配置文件中将shell配置再拷贝一份即可。如下所示。

launch.json

{
// 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/C++_one",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/${fileBasenameNoExtension}.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "C/C++_two",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/${fileBasenameNoExtension}.out",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"preLaunchTask": "build",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

最后

以上就是鳗鱼白云为你收集整理的VSCODE运行C程序的时候如何同时打开两个终端的全部内容,希望文章能够帮你解决VSCODE运行C程序的时候如何同时打开两个终端所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部