1、shared_ptr

shared_ptr除了最基本的可以用new初始化以外,还可以使用其他方式初始化。在使用一些c的api时候,这种初始化方式非常有用,如下

boost::shared_ptr<CURL> curl_(curl_easy_init(), curl_easy_cleanup);

上面这段代码用来初始化一个curl的shared_ptr。

2、promise,future

#include <boost/thread.hpp>
#include <boost/thread/future.hpp>
#include <iostream> using namespace std; int main()
{
boost::promise<int> pi;
boost::unique_future<int> fi;
fi=pi.get_future();
//等待2s,超时返回0,被promise被set返回1
cout << "wait over:" << fi.timed_wait(boost::posix_time::milliseconds(2000)) << endl;
//检查promise是否被set
cout << "is ready:" << fi.is_ready() << endl; pi.set_value(42);
cout << "wait over:" << fi.timed_wait(boost::posix_time::milliseconds(2000)) << endl;
cout << "is ready:" << fi.is_ready() << endl;
cout << fi.get() << endl;
} 上面代码运行结果为

future和promise配合可以应用在各种多线程环境下。

比如有些异步api(如zookeeper的watch),提高了编程难度。当我们想要并不要求效率,或者对时序有要求时,可以使用promise和future将这些异步api改为同步

int main()
{
boost::promise<int> pi;
boost::unique_future<int> fi = pi.get_future();
char content[1024] = "\0";
int size = 1024;
zoo_wget(zk_handle, path, callback, static_cast<void*>(&pi), content, &size, NULL));
fi.get();
} void callback(zhandle_t* zh, int type, int state, const char* path, void* watcherCtx)
{
boost::promise<int>* pi = static_cast<boost::promise<int>*>(watcherCtx);
pi->set_value(1);
}

3、regex

match

    boost::regex r("(a*)ddd(b*)ddd");
boost::smatch m;
if(boost::regex_match(string("aaaadddbbbddd"), m, r))
{
cout << m.size() << endl;
for(size_t i = 0; i < m.size(); ++i)
{
//0表示匹配到的整个字符串,1以后的index表示括号中匹配的内容
cout << m[i] << endl;
}
}

search

    boost::regex r("(a+)");
string content = "bbbaaaaacccaaaaddddaaaeeeaaa";
boost::smatch m;
string::const_iterator strstart = content.begin();
string::const_iterator strend = content.end();
while(boost::regex_search(strstart, strend, m, r))
{
//search到的结果,0表示整个,1以后表示括号的index匹配的结果
cout << m[1] << endl;
//从上次搜索到的地方接着搜索
strstart = m[0].second;
}

regex_token_iterator

 
    boost::regex r("(a)c");
string content = "bbbaaaaacccaaaaddddaaaeeeaaa";
//第四个参数0表示匹配到的整个字符串,1以后表示括号中的index,-1表示匹配除了本字符串以外的,可以用来分割字符串
boost::sregex_token_iterator iter(content.begin(), content.end(), r, -1);
boost::sregex_token_iterator end; for(; iter != end; ++ iter)
{
cout<< *iter << endl;
}

regex_replace

class func {
public:
func(vector<string> vec){
_vec = vec;
_index = 0;
}
string aaa(boost::match_results<std::string::const_iterator> match){
string aa = _vec[_index];
cout <<_index<<endl;
_index++;
cout <<_index<<endl;
return aa;
}
private:
vector<string> _vec;
int _index;
}; int main(int argc, char* argv[])
{
vector<string> test;
test.push_back("1");
test.push_back("2");
test.push_back("3");
test.push_back("4");
test.push_back("5");
test.push_back("6");
test.push_back("7");
std::string s="a ? b ?b c? d? e?";
std::string b="a ? b ?b c? d? e?";
std::cout << s << std::endl;
boost::regex reg("\\?"); func f(test);
boost::function<std::string (boost::match_results<std::string::const_iterator>)> function1 =
boost::bind(&func::aaa, &f, _1);
//替换s中的所有符合r的字符串
//第三个参数可以放一个函数对象或者boost::function类型,用来实现特殊逻辑
s=boost::regex_replace(s,reg,function1);
std::cout << s << std::endl;
return 0;
}

4、path

    namespace bf = boost::filesystem;
string my_path = "/";
bf::path file_path(my_path);
bf::directory_iterator end_iter;
//遍历目录下的文件
for (bf::directory_iterator file_itr(file_path); file_itr != end_iter; ++file_itr)
{
string fname = file_itr->path().filename().string();
cout << fname << endl;
}

boost库常用功能的更多相关文章

  1. c++学习书籍推荐《超越C++标准库:Boost库导论》下载

    <超越C++标准库Boost库导论>不仅介绍了Boost库的功能.使用方法及注意事项,而且还深入讨论了Boost库的设计理念.解决问题的思想和技巧以及待处理的问题.因此,本书是一本了解Bo ...

  2. 漫步Facebook开源C++库Folly之string类设计(散列、字符串、向量、内存分配、位处理等,小部分是对现有标准库和Boost库功能上的补充,大部分都是基于性能的需求而“重新制造轮子”)

    就在近日,Facebook宣布开源了内部使用的C++底层库,总称folly,包括散列.字符串.向量.内存分配.位处理等,以满足大规模高性能的需求. 这里是folly的github地址:https:// ...

  3. iOS项目开发常用功能静态库

    YHDeveloperTools iOS项目开发常用功能静态库 查看源码 功能方法: 1.字符检查 [NSString checkStringWithType:Email andTargetStrin ...

  4. [C/C++] C/C++延伸学习系列之STL及Boost库概述

    想要彻底搞懂C++是很难的,或许是不太现实的.但是不积硅步,无以至千里,所以抽时间来坚持学习一点,总结一点,多多锻炼几次,相信总有一天我们会变得"了解"C++. 1. C++标准库 ...

  5. (九)boost库之文件处理filesystem

    (九)boost库之文件处理filesystem   filesystem库是一个可移植的文件系统操作库,它在底层做了大量的工作,使用POSIX标准表示文件系统的路径,使C++具有了类似脚本语言的功能 ...

  6. Boost库学习之旅入门篇

    学习及使用Boost库已经有一段时间了,Boost为我的日常开发中带来了极大的方便,也使得我越来越依赖于boost库了.但boost功能太多,每次使用还是得翻看以前的 资料,所以为了以后可以更方便的使 ...

  7. boost库的安装,使用,介绍,库分类

    1)首先去官网下载boost源码安装包:http://www.boost.org/ 选择下载对应的boost源码包.本次下载使用的是 boost_1_60_0.tar.gz (2)解压文件:tar - ...

  8. 详解 boost 库智能指针(scoped_ptr<T> 、shared_ptr<T> 、weak_ptr<T> 源码分析)

    一.boost 智能指针 智能指针是利用RAII(Resource Acquisition Is Initialization:资源获取即初始化)来管理资源.关于RAII的讨论可以参考前面的文章.在使 ...

  9. JavaScript 常用功能总结

    小编吐血整理加上翻译,太辛苦了~求赞! 本文主要总结了JavaScript 常用功能总结,如一些常用的JS 对象,基本数据结构,功能函数等,还有一些常用的设计模式. 目录: 众所周知,JavaScri ...

随机推荐

  1. Error:Execution failed for task ':app:transformClassesWithDexForDebug'. > com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.Exec

    Error:Execution failed for task ':app:transformClassesWithDexForDebug'.> com.android.build.api.tr ...

  2. C# split字符串

    string strSourse = "ab|||cdef"; string[] arr = strSource.Split(new string[]{"|||" ...

  3. (2) python--pandas

    import pandas as pd import numpy as np # 创建的Series几种方式 s1 = pd.Series(range(4)) s2 = pd.Series([0, 1 ...

  4. Python编程学习笔记 随时更新

    import urllib.request import re url = 'http://stock.sohu.com/news/' html = urllib.request.urlopen(ur ...

  5. 利用注册表在右键添加VisualCode快捷方式

    分为两种配置,第一种是对于文件右键也就是 关联文件 第一步: Win+R 打开运行,输入regedit,打开注册表,找到HKEY_CLASSES_ROOT\*\shell分支,如果没有shell分支, ...

  6. 使用iSCSI Target创建集中式安全存储(一)

    iSCSI 是一种块级别的协议,用于通过TCP/IP网络共享原始存储设备,可以用已经存在的IP和以太网如网卡.交换机.路由器等通过iSCSI协议共享和访问存储.iSCSI target是一种由远程iS ...

  7. 转 linux任务调度之crontab命令

    crontab命令常见于Unix和Linux的操作系统之中,用于设置周期性被执行的指令.该命令从标准输入设备读取指令,并将其存放于"crontab"文件中,以供之后读取和执行. 在 ...

  8. JDBC二部曲之_入门

    JDBC 1 什么是JDBC? JDBC(Java DataBase Connectivity),即Java数据库连接!也就是说,Java程序员可以使用JDBC API来操作数据库. 最早JDBC是J ...

  9. 反射main方法

    利用Java反射机制去调用其他类的main方法基于这种情形: 当程序中的某个类在运行到某处需要去调用其他类的main方法时,如果此程序并不知道此main方法所属类的名称,而只是在程序中接受某一代表此m ...

  10. stl set求交集 并集 差集

    #include <iostream>#include <set> using namespace std; typedef struct tagStudentInfo{  i ...