C++ 概念: ContiguousContainer
来自cppreference.com
相接容器 (ContiguousContainer
) 是于相接内存位置存储对象的容器 (Container
) 。
[编辑] 要求
类型 X
满足相接容器 (ContiguousContainer
) ,若
- 类型
X
满足容器 (Container
) - 类型
X
支持随机访问迭代器 (RandomAccessIterator
) - 成员类型 X::iterator 与 X::const_iterator 是相接迭代器 (
ContiguousIterator
)
[编辑] 标准库中的相接容器 (ContiguousContainer)
存储并操作字符序列 (类模板) | |
(C++11 起) |
静态的相接数组 (类模板) |
动态的相接数组 (类模板) |