STL体系结构介绍 STL六大组件 组件包括:容器(Container),分配器(Allocators),算法(Algorithms),迭代器(Iterators),适配器(Adapters),仿函数(Function)。 “前闭后开”区间 STL标准库,begin指向第一个元素,end指向最后元素的下一个元素。(不一定是连续空间) //auto用法(C11) for (del :coll) { statement } std...