
Boost
ghlfllz
这个作者很懒,什么都没留下…
展开
-
Boost.Regex库使用实例
完整测试代码: #include #include using namespace std;int main(int argc, char* argv[]){ //( 1 ) (( 3 ) 2 )(( 5 )4)( 6 ) //(/w+)://((/w+/.)*/w+)((//w*)*)(//w+/./w+)? //^协议://网址(转载 2011-04-03 12:25:00 · 5312 阅读 · 0 评论 -
有关Boost::thread的一些杂记
有关Boost::thread的一些杂记 1、锁定当前线程 与 解锁 Boost::lock_guard 构造时锁定,析构时释放 Boost:mutex用于lock_guard的构造参数,有lock与unlock等方法 2、Boost::this_thread的相关说明 get_id 当前线程的编号 sleep 挂机当前线程 yield 放弃当前线程剩余时间片,允许原创 2012-05-13 17:57:35 · 746 阅读 · 0 评论 -
Boost实现将字符串按格式解析到数组的功能
Boost实现将字符串按格式解析到数组的功能(Split) #include boost::algorithm::split(std::vector &result, const std::string &data, boost::algorithm::is_array_of(const std::string &_separator));原创 2012-05-13 21:09:36 · 700 阅读 · 0 评论