作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
size_t 和 size_type 一样是伴生类型吗?当谈到尺码类型时,他们没有将伴随类型名称标准化是什么 - 意思只是 size_type?
最佳答案
我不知道什么是随播类型。但是 size_t
是 C 中的标准类型,std::size_t
也是 C++ 中的标准类型。语言中的其他内容取决于此类型,例如 sizeof
的结果或 new[]
的参数。
标准唯一谈到 size_type
的地方是 whitin 容器。它被指定为 size()
返回值的类型。它通常根据 allocator::size_type
定义,通常是 - 但不一定是 - std::size_t
。
关于C++ : Is size_t a companion type just like size_type?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7921601/
我是一名优秀的程序员,十分优秀!