Boost作為C++的一個最關鍵的庫, 是每一個C++編程人員需要使用的, 本文講解如何在Eclipse+MinGW下配置boost庫;
可以按照如下鏈接完美配置; 地址: http://blog.csdn.net/caroline_wendy/article/details/17039847;
下載boost最新版本至MinGW的文件下, 並解壓, 最新版本: http://www.boost.org/users/history/version_1_55_0.html
windows環境比linux難配置, 所以選擇講解windows版本;
由於boost有些庫, 如regex(正則), 需要手動編譯, 不能直接使用;
點擊, 根目錄下的"bootstrap.bat"文件, 會生成"bjam.exe", 文件, 最終編譯出的庫會生成在stage文件夾中;
如果直接雙擊bjam是生成的VS版本的庫文件;
如果生成MinGW的GCC版本的庫文件, 需要輸入命令"bjam.exe --build-type=complete toolset=gcc stage"
如圖, 已經編譯結束:
添加系統環境變量Path, 使系統可以找到dll, "XXX\boost\stage\lib", XXX為具體路徑; 注銷或重啟電腦;
主要包含兩個位置, 一個是include目錄, 一個lib目錄, 具體位置, 如添加regex庫, 如圖:
#include <boost/regex.hpp> #include <iostream> #include <iterator> #include <algorithm> using namespace std; using namespace boost; int main() { string pattern("[^c]ei"); pattern = "[[:alpha:]]*" + pattern + "[[:alpha:]]*"; regex r(pattern); smatch results; string test_str = "receipt freind theif receive"; if(regex_search(test_str, results, r)) cout << results.str() << std::endl; }
作者:csdn博客 Mystra