前端之家收集整理的这篇文章主要介绍了
centos 安装Boost库,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一、安装
刚刚使用linux系统,对很多系统命令和操作方式还不是很熟悉。想装个boost库,在网上看了几篇教程根本没弄明白,终于,用三行命令解决了。要能使用yum安装,首先你得确认你的linux服务器能否连上因特网,因为yum需要连接到因特网下载。
yum install boost
yum install boost-devel
yum install boost-doc
二、使用
对于我这样的小白来说,使用动态链接库时要添加链接我是不知道的,后来也是自己慢慢摸索出来了。
首先测试头文件。
- #include<iostream>
- #include<boost/filesystem.hpp>
@H_404_89@intmain()
- {
@H_404_89@std::cout<<"hello,world"<<std::endl;
- return0;
@H_404_89@}
使用
g++ test.cpp -o test
编译
./test
执行
再测试需要用到二进制库的功能模块
usingnamespaceboost::filesystem;
intmain(intargc,char*argv[])
@H_
404_89@{
if(argc<2){
"Usage:tut1path\n";
return1;
@H_
404_89@}
std::cout<<argv[1]<<""<<file_size(argv[1])<<std::endl;
return0;
注意:这时我使用的是
g++ test.cpp -o test -lboost_system -lboost_filesystem
执行 ./test,输出
Usage: tut1 path
恭喜你,成功了!