Ray's playground

 

Item 54: Familiarize yourself with the standard library, including TR1(Effective C++)

  • The primary standard C++ library functionality consists of the STL, iostreams, and locales. The C99 standard library is also included.

  • TR1 adds support for smart pointers (e.g., tr1::shared_ptr), generalized function pointers (tr1::function), hash-based containers, regular expressions, and 10 other components.

  • TR1 itself is only a specification. To take advantage of TR1, you need an implementation. One source for implementations of TR1 components is Boost.

posted on 2011-04-10 11:27  Ray Z  阅读(162)  评论(0编辑  收藏  举报

导航