关于boost.regex库的编译问题(C/C++)

       今天早上在学习boost的regex库时,编译时遇到了如下问题:1>LINK : fatal error LNK1104: 无法打开文件“libboost_regex-vc120-mt-gd-1_64.lib”。具体使用的程序如下:

#include<boost/regex.hpp>
#include<locale>
#include<iostream>
#include<string>
using namespace std;
void main()
{
 std::locale::global(std::locale("English"));
 string str = "hello world";
 boost::regex expr("\\w+\\s\\w+");
 cout << boost::regex_match(str, expr);
 cin.get();
}

        后来才发现没有将“libboost_regex-vc120-mt-gd-1_64.lib”所在的路径“E:\boost_1_64_0\stage\lib”添加到:(项目>属性>链接器>常规 >  附加目录库)中去,添加完成后,成功运行。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值