科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道在Windows和Visual Studio上安装Boost

在Windows和Visual Studio上安装Boost

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

本文主要探讨在Windows和Visual Studio上安装Boost。

作者:良少shendl 来源:CSDN 2008年2月1日

关键字: boost 安装 Visual Studio Windows

  • 评论
  • 分享微博
  • 分享邮件

下载并安装boost

1,在boost的网站上下载一个boostWindows版本的安装器。

http://www.boost-consulting.com/download/windows

这个程序会自动下载和安装boost

整个Boost有接近1G那么大。

2,或者你也可以直接在boost网站上下载完整版的boost,下载以后安装。

boost_1_34_1.exe

    建议你使用第一种方式下载。因为那个程序的下载速度非常快。我选择的是从日本下载。

 

 

 

 

Visual Studio中启用boost

需要在项目属性中附加boost的目录。

    我选择的安装Boost的目录如下:

D:\C++Runtim\boost\boost_1_34_1\

 

1,在“附加包含目录”中添加对boost头文件目录的包含。以便正确include boost的头文件。

对于我的配置来说,这里需要输入D:\C++Runtim\boost\boost_1_34_1\

 

这个目录下面包含了头文件:

 

2,还需要附加boostlibdll文件

在“附加库目录”中包括boostlib库目录文件夹。

对于我的配置来说,这里需要输入D:\C++Runtim\boost\boost_1_34_1\lib

 

 

现在,可以编写我们的第一个boost程序了。

 

#include "stdafx.h"

 

#include <iostream>

#include <cassert>

#include <string>

#include "boost/regex.hpp"

 

int main() {

// 3 digits, a word, any character, 2 digits or "N/A", 

     // a space, then the first word again 

     boost::regex reg("\\d{3}([a-zA-Z]+).(\\d{2}|N/A)\\s\\1"); 

     std::string correct="123Hello N/A Hello"; 

     std::string incorrect="123Hello 12 hello"; 

     assert(boost::regex_match(correct,reg)==true); 

     assert(boost::regex_match(incorrect,reg)==false);

}

 

 

 

查看本文来源
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章