VSCode:免费、开源
插件:C/C++(有cpp文件会自动识别)
GCC 官网提供的 GCC 编译器是无法直接安装到 Windows 平台上的,如果我们想在 Windows 平台使用 GCC 编译器,可以安装 GCC 的移植版本。
这里我们下载MinGW(这里是wins64位):
https://udomain.dl.sourceforge.net/project/mingw-w64/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/8.1.0/threads-posix/seh/x86_64-8.1.0-release-posix-seh-rt_v6-rev0.7z
百度网盘(47.08M):https://pan.baidu.com/s/1dA3Y0sHS67zvLECZP6RUwg
提取码:di9y
解压到合适的目录,然后配置环境变量 ${path}/bin 即可
验证:
gcc -v
g++ -v
#include <iostream>
using namespace std;
int main(){
cout << "hello world" << endl;
system("pause");// 防止闪退
return 0;
}
ctrl + shift + b,或者
g++ hello.cpp -o hello
生成hello.exe