c++标准库比较

1 GNU standard c++ library

debian发行版中使用的c++标准库是GNU standard c++标准库。

2 Boost

debian发行版中也是用了boost库,但是不是整个使用,它抠出一些特性出来使用。

文件系统操作的包libboost-filesystem1.55.0来自Boost C++ Libraries collection中的The Boost Filesystem Library,该库对文件系统中的路径、文件和目录进行处理。

graph库,libboost-graph-parallel1.55.0,来自于Boost C++ Libraries collection中的Boost Graph Library。但是它在这里加了并行的特性。

math库,libboost-math1.55.0.i

3 libstdc++ and libc++

libstdc++是gnu c++,常用于linux发行版中,而libc++是llvm重写的标准c++,用于os x中。

原文地址:https://www.cnblogs.com/hustdc/p/6483190.html