如何在Windows上安装C++ Boost库
提升库 在它里面。在这篇文章中,我们将学习如何在Windows上安装C++的boost库。
在Windows上安装C++的Boost库。
第1步: 右侧的选项。
第2步:
第3步:
第4步: 上,并选择全部提取…
第5步:
第6步: 到boost文件夹中。因此,boost库被安装到我们的系统中。
验证C++中Boost库的安装情况
代码的成功编译将证明boost库已安装在windows中。
#include <boost/array.hpp>
#include <iostream>
using namespace std;
int main()
{
boost::array<int, 10> arr
= { { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 } };
for (int i = 0; i < 10; i++) {
cout << "Geek Rank is :" << arr[i] << "*"
<< "\n";
}
return 0;
}
输出:
Geek Rank is :1*
Geek Rank is :2*
Geek Rank is :3*
Geek Rank is :4*
Geek Rank is :5*
Geek Rank is :6*
Geek Rank is :7*
Geek Rank is :8*
Geek Rank is :9*
Geek Rank is :10*