BOOST基础
- 1. 简介
- 2. 安装
- 3. 使用
- 3.1 lamdba表达式
- 3.2 容器中存放任意类型值
- 3.3 数据转化
- 3.4指针容器
- 3.5 退出处理
- 3.6 遍历`BOOST_FOREACH`
- 3.7 函数绑定
- 3.8 不可复制类
1. 简介
2. 安装
sudo yum install boost-devel
Ubuntu
sudo apt-get install libboost-dev
- 手动安装
大部分boost库的头文件主要由模板和内联函数实现,不需要编译成二进制文件。只需要解压即可。
- 下载boost:http://www.boost.org/
- 解压
tar -jxvf boost-版本号.tar.bz2
如果用到如下特性的时候需要安装。
Boost.Filesystem
Boost.IOStreams
Boost.ProgramOptions
Boost.Python
Boost.Regex
Boost.Serialization
Boost.Signals
Boost.Thread
Boost.Wave
全安装方式
-
编译./bootstrap.sh --prefix=$HOME/usr
.
-
安装./b2 install
库的生成路径:$HOME/usr/lib
,头文件的路径:$HOME/usr/include/boost
。
-
添加lib库自动搜索路径
vim /etc/ld.so.conf
,添加include /usr/local/lib
。
-
运行ldconfig
命令使之生效。
3. 使用
3.1 lamdba表达式
lambda
库通过创建一个匿名的lambda表达式来代替实名的函数对象
#include
#include
using namespace boost::lambda;
using namespace std;
int main() {(cout << _1 << " " << _2)("Hello","World");
}
#include
#include
using namespace boost::lambda;
using namespace std;int main(){ auto func &#61; std::cout << _1 << " " << _2;func("Hello","World");
}
#include
#include
#include
#include
#include
int main()
{ using namespace boost::lambda; using namespace std; int arr[] &#61; {1,2,3,4,5,6};for_each(arr,arr&#43;6, cout << _1 << " " );cout << endl;vector<int> vec(arr,arr&#43;6);for_each(vec.begin(),vec.end(), cout << _1 << " " );cout << endl;
}
如果需要使用_1
、_2
的成员变量。需要使用绑定bind()
。
#include
#include
#include
#include
#include "boost/lambda/lambda.hpp"
#include "boost/lambda/bind.hpp" using namespace boost::lambda;
using namespace std;
int main() { map<int,string> kv;kv[110] &#61; "匪警";kv[119] &#61; "火警";kv[120] &#61; "急救中心";for_each(kv.begin(),kv.end(), cout << bind(&map<int,string>::value_type::first,_1) << &#39;\t&#39; << bind(&map<int,string>::value_type::second,_1) << &#39;\n&#39;);
}
3.2 容器中存放任意类型值
#include
#include
#include
#include
#include int main(){using namespace std;using namespace boost;any a1 &#61; 10;any a2 &#61; 1.1f;any a3 &#61; string("abc");any a4 &#61; "abcefg";cout << any_cast<int>(a1) << endl;cout << any_cast<float>(a2) << endl;cout << any_cast<string&>(a3) << endl;cout << any_cast<const char*>(a4) << endl;vector<any> vec2 &#61; {"abcd",123,3.14};cout << any_cast<const char*>(vec2[0]) << endl;cout << any_cast<int>(vec2[1]) << endl;cout << any_cast<double>(vec2[2]) << endl;vector<any> vec;vec.push_back(10);vec.push_back(12.4);vec.push_back(string("string"));char const* c_str &#61; "const char*";vec.push_back(c_str);cout << any_cast<int>(vec[0]) << endl<< any_cast<double>(vec[1]) << endl<< any_cast<string&>(vec[2]) << endl<< any_cast<char const*>(vec[3]) << endl;
}
注意&#xff1a;
any_cast<>
中的类型不是原来的类型会抛出异常。any
已经成为C&#43;&#43;17的标准库组件。
3.3 数据转化
#include
#include
int main(){int i &#61; boost::lexical_cast<int>("100");float f &#61; boost::lexical_cast<float>("2.01");char chars[] &#61; "1234";int n &#61; boost::lexical_cast<int>(chars,strlen(chars));std::cout << i << " " << f << " " << n << std::endl;
}
C&#43;&#43;11可以使用stoi()
、stof()
等
#include
#include
#include
int main(){std::string str1 &#61; boost::lexical_cast<std::string>(100);std::string str2 &#61; boost::lexical_cast<std::string>(2.01);std::cout << str1 << " " << str2 << std::endl;
}
#include
#include
using namespace std;
class Base{
public:void Func(){cout << "Base" << endl;}virtual ~Base(){}
};
class Derive : public Base{
public:void Func(){cout << "Derive" << endl;}
};
int main(){Base* b &#61; new Derive;boost::polymorphic_cast<Derive*>(b)->Func();
}
3.4指针容器
特点&#xff1a;容器销毁自动释放指针
#include
#include int main(){ptr_vector<int> pvec;for(int i&#61;0;i<10;&#43;&#43;i){pvec.push_back(new int(i));}for(auto n:pvec){cout << n << " ";}boost::ptr_set<int> s;for(size_t i&#61;0;i<10;i&#43;&#43;){s.insert(new int(i));}
}
3.5 退出处理
变量离开(正常/异常)作用域&#xff0c;触发处理代码。
#include
#include
using namespace std;
int main(){{int *a &#61; new int(10);BOOST_SCOPE_EXIT(a){delete a;}BOOST_SCOPE_EXIT_ENDcout << *a << endl;}
}
不止用在new
/delete
&#xff0c;也用在fopen()
/fclose()
&#xff0c;dlopen()
/dlclose()
等。与析构函数相似的作用。
3.6 遍历BOOST_FOREACH
#include
#include
using namespace std;
int main(){int arr[] &#61; {1,2,3,4,5};BOOST_FOREACH(int a,arr) cout << a << endl;
}
3.7 函数绑定
- 全局函数&#xff1a;
boost::bind(函数名, 参数1&#xff0c;参数2&#xff0c;...)
- 成员函数&#xff1a;
boost::bind(&类名::方法名&#xff0c;类实例指针&#xff0c;参数1&#xff0c;参数2&#xff09;
#include
#include
#include
using namespace std;
bool comp(int a,int b){return a<b;
}
int main(){int arr[] &#61; {1,2,3,4,5};cout << count_if(arr,arr&#43;5,boost::bind(comp,_1,3)) << endl;cout << count_if(arr,arr&#43;5,boost::bind(comp,2,_1)) << endl;
}
bind
支持最多九个参数。占位符被命名为 _1
,_2
, _3
, _4
, 直至 _9
。
3.8 不可复制类
#include class Test:private boost::nocopyable{
};