
Boost
huangxiangbo316
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++ 调用Boost 使用正则表达式实例
#include #include #include #include "boost/regex.hpp" using namespace std; using namespace boost; void main() { regex reg("\\d{3}([a-zA-Z]+).(\\d{2}|N/A)\\s\\1"); string corr原创 2013-06-22 11:18:14 · 920 阅读 · 0 评论 -
Visual Studio 2008 搭建boost开发环境
boost的介绍以及重要性就不累赘了,直接进入正题。 1、编译安装boost,本文以boost_1_47_0文件夹在D盘为例。 2、启动Visual Studio 2008,点击“工具”->“选项”,展开“项目和解决方案”,选择“VC++目录”: 3、选择“显示以下内容的目录(s):”的“包含文件”,然后添加“D:\boost_1_47_0”目录。原创 2013-06-22 11:14:53 · 675 阅读 · 0 评论