Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 383 Bytes

chapter16.md

File metadata and controls

16 lines (12 loc) · 383 Bytes

第十六章 string类和标准模板库

本章内容包括:

  • 标准C++ string类;
  • 模板auto_ptr、unique_ptr 和 shared_ptr;
  • 标准模板库;
  • 容器类;
  • 迭代器
  • 函数对象;
  • STL算法
  • 模板initializer_list

16.4.1 为何使用迭代器

模板使得算法独立于存储的数据类型,而迭代器使算法独立于使用的容器类型。