boost
文章平均质量分 79
morning_color
这个作者很懒,什么都没留下…
展开
-
boost::any基本用法
boost::any的基本用法原创 2015-09-23 15:37:32 · 6320 阅读 · 0 评论 -
boost::program_options 用法详解
boost::program_options 用法详解boostprogram_options 用法详解简介主要组件代码流程示例一示例二简介 program options是一系列pair<name,value>组成的选项列表,它允许程序通过命令行或配置文件来读取这些参数选项.主要组件program_options的使用主要通过下面三个组件完成: 组件名 作用 option原创 2015-12-09 21:41:41 · 20537 阅读 · 5 评论 -
C++ shared_ptr源码剖析
/** * @brief A smart pointer with reference-counted copy semantics. * * The object pointed to is deleted when the last shared_ptr pointing to * it is destroyed or reset. */sha原创 2015-12-25 22:40:02 · 1629 阅读 · 1 评论