码迷,mamicode.com
首页 > 编程语言 > 详细

C++ Boost在VS2015中的使用

时间:2019-01-01 18:52:47      阅读:477      评论:0      收藏:0      [点我收藏+]

标签:nbsp   img   stream   space   main   class   iostream   vs2015   compile   

 

 

 1.下载二进制文件包

技术分享图片

 

目录结构:

技术分享图片

 

 2.设置路径

技术分享图片

 

 

 

技术分享图片

 

测试

#include "stdafx.h"
#include <boost\version.hpp>
#include <boost\config.hpp>
#include <iostream>
using namespace std;

int main()
{
    cout << "boost 版本:" << BOOST_VERSION << endl;
    cout << "boost lib 版本:" << BOOST_LIB_VERSION << endl;
    cout << "操作系统:" << BOOST_PLATFORM << endl;
    cout << "编译器:" << BOOST_COMPILER << endl;
    cout << "标准库:" << BOOST_STDLIB << endl;
}

输出

技术分享图片

 

C++ Boost在VS2015中的使用

标签:nbsp   img   stream   space   main   class   iostream   vs2015   compile   

原文地址:https://www.cnblogs.com/sea-stream/p/10205425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!