繁体   English   中英

对于具有默认分配器的标准容器,std :: container :: size_type是否保证为size_t?

[英]Is std::container::size_type guaranteed to be size_t for standard containers with default allocator?

喜欢:

  • std::string<T>::size_type
  • std::list<T>::size_type
  • std::map<T>::size_type
  • std::vector<T>::size_type
  • 等等

cplusplus.comcppreference.com都说它们通常是size_t ,但除非使用自定义分配器,否则它们是否真的,毫无疑问地被标准保证size_t

对于STL容器 - 不。 [container.requirements.general]中标准的表96列出了任何容器X容器需求,非常清楚地说明了这一点:

在此输入图像描述


但是,对于basic_stringsize_type定义为

typedef typename allocator_traits<Allocator>::size_type size_type;

反过来, std::allocator<..> size_t将作为分配器。

此外,根据[array.overview] / 3, std::array使用size_t作为size_type

size_type不保证是size_t

但是默认的分配器 size_type是,所以默认值是size_t

从标准20.6.9

template <class T> class allocator {
public:
typedef size_t size_type;
typedef ptrdiff_t difference_type;
....

容器的size_type派生自分配器:

typedef typename allocator_traits<Allocator>::size_type size_type;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM