博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
boost安装
阅读量:4929 次
发布时间:2019-06-11

本文共 809 字,大约阅读时间需要 2 分钟。

1 官方文档

www.boost.org
2 安装
2.1  ubuntu
sudo apt-get install libboost-all-dev
2.2 centos
wget http://sourceforge.net/projects/boost/files/boost/1.57.0/boost_1_57_0.tar.gz/download
tar -zxvf boost_1_57_0.tar.gz
cd boost_1_57_0
编译(参考 http://blog.csdn.net/hzdiy/article/details/18888477)
./bootstrap.sh --with-libraries=system,filesystem,log,thread --with-toolset=gcc
./b2 toolset=gcc cxxflags="-std=c++11"  
./b2 install --prefix=/usr
3 测试使用
vim  test.cpp
#include <boost/lexical_cast.hpp>
#include <iostream>
int main()
{
  using boost::lexical_cast;
  int a= lexical_cast<int>("123456");
  double b = lexical_cast<double>("123.456");
  std::cout << a << std::endl;
  std::cout << b << std::endl;
  return 0;
}
编译运行
g++ -o test test.cpp
test  test.cpp
./test
123456
123.456

转载于:https://www.cnblogs.com/chengxin1982/p/4201402.html

你可能感兴趣的文章
3.每周总结
查看>>
应用提交 App Store 上架被拒绝
查看>>
Android实现异步处理 -- HTTP请求
查看>>
数据清空js清空div里的数据问题
查看>>
Fortran中的指针使用
查看>>
移动终端app测试点总结
查看>>
14-6-27&28自学内容小结
查看>>
JSP
查看>>
---
查看>>
(第一组_GNS3)自反ACl
查看>>
hdu--1258--Sum It Up(Map水过)
查看>>
Spring @DeclareParents 的扩展应用实例
查看>>
VS2012更新Update1后帮助查看器无法打开
查看>>
【Weiss】【第03章】练习3.9:大整数运算包
查看>>
Android 文件的读取和写入
查看>>
机器学习-加权采样算法简介
查看>>
高校表白APP-冲刺第四天
查看>>
outlook 设置163邮箱
查看>>
mysql优化——show processlist命令详解
查看>>
Solr服务器搭建
查看>>