| 类型别名 | |
| iterator | 此容器类型的迭代类型 |
| const_iterator | 可以读取元素,但不能修改元素的迭代器类型 |
| size_type | 无符号整数类型,足够保存此种容器类型最大可能容器的大小 |
| difference_type | 带符号整数类型,足够保存两个迭代器之间的距离 |
| value_type | 元素类型 |
| reference | 元素的左值类型;与value_type&含义相同 |
| const_reference | 元素的const左值类型(即,const value_type&) |
原文:https://www.cnblogs.com/mu-ran-2501590635/p/10745101.html