C ++ / STL: 1- A preliminary study on the standard template library

------Standard Template Library------

What is STL

STL is short for Standard Template Library , that is, standard template library. It is the C ++ standard library, and all C ++ compilers support this library. When developing, using the STL library that has been written by the official can save our development time and improve development efficiency.

The composition of STL

The STL . 6 parts, namely the containers (Containers), iterators (iterators), algorithms (algorithms), a space configurator (the allocator), adapter (Adapters), functor (functors) .
After the blog, I will publish some insights through personal learning.

containercontainer
Iteratoriterators
algorithmalgorithms
Space Configuratorallocator
Adapteradapters
Functorfunctors

Published 16 original articles · praised 7 · 20,000+ views

Guess you like

Origin blog.csdn.net/yuecangjiao5151/article/details/103450664