string::size_type instead of int(string::size_type 而不是 int)
问题描述
const std::string::size_type cols = greeting.size() + pad * 2 + 2;
为什么是 string::size_type
?int
应该可以工作!它有数字!!!
Why string::size_type
? int
is supposed to work! it holds numbers!!!
推荐答案
short 也包含数字.签名字符也是如此.
A short holds numbers too. As does a signed char.
但是这些类型都不能保证足够大来表示任何字符串的大小.
But none of those types are guaranteed to be large enough to represent the sizes of any strings.
string::size_type
保证了这一点.它是一种足以表示字符串大小的类型,无论该字符串有多大.
string::size_type
guarantees just that. It is a type that is big enough to represent the size of a string, no matter how big that string is.
有关为什么需要这样做的简单示例,请考虑 64 位平台.一个 int 通常仍然是 32 位的,但你有远远超过 2^32 字节的内存.
For a simple example of why this is necessary, consider 64-bit platforms. An int is typically still 32 bit on those, but you have far more than 2^32 bytes of memory.
因此,如果使用(有符号)int,您将无法创建大于 2^31 个字符的字符串.然而,在这些平台上 size_type 将是一个 64 位值,因此它可以毫无问题地表示更大的字符串.
So if a (signed) int was used, you'd be unable to create strings larger than 2^31 characters. size_type will be a 64-bit value on those platforms however, so it can represent larger strings without a problem.
这篇关于string::size_type 而不是 int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:string::size_type 而不是 int
基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01