ubuntu下使用visual studio code来编译和调试C++

https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools

https://www.cnblogs.com/wanglinhai/p/5828718.html  这里有调试代码方法

https://blog.csdn.net/maguanzhan7939/article/details/77867767

打开VS Code后,按crtl + shift + P调出命令行,然后搜索C++,安装微软自己开发的那个。

同样可以安装C++ Intellisense插件,用于自动补全代码。还要安装task runner

之后,按照这个方法就可以有个简单的结果:

https://blog.csdn.net/linlinlin96/article/details/79441350

http://www.cnblogs.com/ghjnwk/p/9806677.html

 

自动提示、代码高亮、编译并调试这三大核心功能都需要配置

https://blog.csdn.net/caoshiying/article/details/78122073

https://blog.csdn.net/qq_36113598/article/details/80586515

 

 

你可能感兴趣的:(ubuntu下使用visual studio code来编译和调试C++)