[boost]-boost中的各个模块

    boost中的库,一部分是不需要编译而直接使用的;另一部分是需要编译生成lib,或dll,才能使用的,这部分需要编译才能使用的库是因为其实现依赖于操作系统的功能,像线程同步,文件系统、程序优化,信号等。


    不需要编译直接使用(也可以编译后再使用)的库有:

        DateTime

        Graph

        Math

        Random

        Test

        Exception


boost源码目录:

boost_1_57_0\ .................The “boost root directory”
   index.htm .........A copy of www.boost.org starts here
   boost\ .........................All Boost Header files
   lib\ .....................precompiled library binaries
   libs\ ............Tests, .cpps, docs, etc., by library
     index.html ........Library documentation starts here
     algorithm\
     any\
     array\
                     …more libraries…
   status\ .........................Boost-wide test suite
   tools\ ...........Utilities, e.g. Boost.Build, quickbook, bcp
   more\ ..........................Policy documents, etc.
   doc\ ...............A subset of all Boost library docs


你可能感兴趣的:([boost]-boost中的各个模块)