当前位置: 代码迷 >> 综合 >> VS2019 安装使用 c++ boost库
  详细解决方案

VS2019 安装使用 c++ boost库

热度:91   发布时间:2023-10-22 23:02:52.0

boost库包下载

官网下载https://www.boost.org/
VS2019 安装使用 c++ boost库
VS2019 安装使用 c++ boost库

编译安装boost库

下载好后,解压,得到文件目录(注意这是我已经编译好的)如下图,找到其中的bootstrap.bat文件:
VS2019 安装使用 c++ boost库
然后打开vs2019的命令行:这里选择64位或者32位的都可以。我选择的是x86_x64的。
VS2019 安装使用 c++ boost库
VS2019 安装使用 c++ boost库
然后切换到你解压到的路径。运行boostbootstrap.bat。

cd  你的boost目录
./boostbootstrap.bat

等待一会 出现:
VS2019 安装使用 c++ boost库
运行之后,查看该目录下会多出几个文件运行b2.
等待。。。。。。。成功
VS2019 安装使用 c++ boost库

VS2019使用boost库

VS2019 安装使用 c++ boost库
VS2019 安装使用 c++ boost库
测试代码

#include <iostream>
#include <boost/sort/sort.hpp>
#include <algorithm>
#include <vector>using namespace std;
int main()
{
    vector<int> arr;while (arr.size() < 100) arr.push_back(std::rand());boost::sort::block_indirect_sort(std::begin(arr), std::end(arr));for_each(std::begin(arr), std::end(arr), [](int& a) {
    cout << a << "\t";});return 0;}

运行结果
VS2019 安装使用 c++ boost库

  相关解决方案