Boost C++ Libraries

Boost C++ Libraries[编辑]

Boost C++ Libraries
Boost.png
Boost logo
稳定版本1.56.0 / 2014年8月7日(2个月前)
类型
许可协议Boost许可证
网站http://www.boost.org/

Boost C++ 库(Libraries)是一组扩充C++功能性的经过同行评审(Peer-reviewed)且开放源代码程序库。大多数的函数为了能够以开放源代码、封闭项目的方式运作,而授权于Boost软件许可协议(Boost Software License)之下。许多Boost的开发人员是来自C++标准委员会,而部份的Boost库成为C++的TR1标准之一。[1]

为了要确保库的效率与弹性,Boost广泛的使用模板(template)功能。而它是针对各式领域的C++用户与应用领域(Application Domain)上,包含的库类从像smart_ptr 库这种类通用库,到像是文件系统操作系统抽象层,甚至能够利用Boost来开发额外的库或是给高级的C++用户利用,像是MPL

内容[编辑]

容器[编辑]

正当性与测试[编辑]

数据结构[编辑]

语言之间的支持(Python用)[编辑]

  • iterator
  • 数学和计算
  • 存储器(memory)
    • pool - 内存池,boost提供4种内存池模型供使用:pool、object_pool、singleton_pool、pool_allocator/fast_pool_allocator。
    • smart_ptr - boost的smart_ptr中提供了4种智能指针,作为std::auto_ptr的补充。
      • scoped_ptr - 具作用域指针,与std::auto_ptr类似,但不能转让所有权,用于确保离开作用域能够正确地删除动态分配的对象。
      • scoped_array - 配合scoped_ptr使用。
      • shared_ptr -
      • shared_array - 配合shared_ptr使用。
      • weak_ptr - shared_ptr 的观察者,避免shared_ptr循环引用,是一种辅助指针。
      • intrusive_ptr - 比 shared_ptr 更好的智能指针。
    • utility - 以下是utility类型的定义。

并行计算[编辑]

其他[编辑]

模板元编程(Template Metaprogramming)[编辑]

范例[编辑]

现有的 Boost 包含 87 种不同的函数库,以下面几项做范例:

线性代数 – uBLAS[编辑]

Boost 包含了 uBLAS 线性代数函数库,能够借由基本函数库子函数(BLAS)来支持矢量与矩阵形运算。

  • 此范例表示如何矩阵与矢量作乘积:
 
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
#include <iostream>
 
using namespace boost::numeric::ublas;
 
/* 举例 "y = Ax"  */
int main () 
{
      vector<double> x (2);
      x(0) = 1; x(1) = 2;
 
      matrix<double> A(2,2);
      A(0,0) = 0; A(0,1) = 1;
      A(1,0) = 2; A(1,1) = 3;
 
      vector<double> y = prod(A, x);
 
      std::cout << y << std::endl;
      return 0;
}

随机数产生 – Boost.Random[编辑]

Boost 也提供独立分布的模拟随机与 PRNG 独立性的机率分布,而这些能够具体的创建产生器。

#include <boost/random.hpp>
#include <ctime>
 
using namespace boost;
 
double SampleNormal (double mean, double sigma)
{
    // 建立一个 Mersenne twister 随机数产生器
    // 使用 Unix 时间设定 seed
    static mt19937 rng(static_cast<unsigned> (std::time(0)));
 
    // 选择高斯机率分布
    normal_distribution<double> norm_dist(mean, sigma);
 
    // 使用 function 的形式,生成随机数据产生器
    variate_generator<mt19937&, normal_distribution<double> >  normal_sampler(rng, norm_dist);
 
    // 传回样本分布结果
    return normal_sampler();
}

更详细的说明请参阅 Boost 随机数库

多线程 – Boost.Thread[编辑]

示例码演示创建线程:

#include <boost/thread/thread.hpp>
#include <iostream>
 
using namespace std; 
 
void hello_world() 
{
  cout << "Hello world, I'm a thread!" << endl;
}
 
int main(int argc, char* argv[]{
  // 開始一條使用 "hello_world" function 的新執行緒
  boost::thread my_thread(&hello_world);
  // 等待執行緒完成工作
  my_thread.join();
 
  return 0;
}

引用[编辑]

外部链接[编辑]

Wikibooks-logo.svg
您可以在 维基教科书中查找此百科条目的相关电子教程:
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值