本文主要是介绍mbp m1 c++ vscode配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- 新建一个空目录
mkdir oj
cd oj
- 创建cpp文件 helloworld.cpp
复制以下测试代码:
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};
for (const string& word : msg)
{
cout << word << " ";
}
cout << endl;
}
- 参照下面的参考文献
- https://www.cnblogs.com/BYGAO/p/15135609.html 【比较详细】
- https://code.visualstudio.com/docs/cpp/config-clang-mac 【官网】
- https://zhuanlan.zhihu.com/p/348111473 【解决了vector的报错】
- https://blog.csdn.net/neptune4751/article/details/105925558/ 【看起来比较简单还没试】
这篇关于mbp m1 c++ vscode配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!