Ubuntu下安装boost库
(2018-04-02 12:10:43)分类: ccpp |
安装环境
ubuntu 14.04
步骤
直接使用 apt-get进行安装
sudo apt-get install libboost-dev
测试
#include
#include "boost/lexical_cast.hpp"
#include
int main()
{
std::string s="100";
int a=boost::lexical_cast(s);
int b=1;
std::cout<<(a+b) <<std::endl;//输出101
return 0;
}