Where do I find the definition of size_t?(我在哪里可以找到 size_t 的定义?)
问题描述
我看到用这种类型定义的变量,但我不知道它来自哪里,也不知道它的目的是什么.为什么不使用 int 或 unsigned int?(其他类似"类型呢?Void_t 等).
I see variables defined with this type but I don't know where it comes from, nor what is its purpose. Why not use int or unsigned int? (What about other "similar" types? Void_t, etc).
推荐答案
来自 维基百科
stdlib.h
和 stddef.h
头文件定义了一个名为 size_t
1 用于表示对象的大小.接受大小的库函数期望它们是 size_t
类型,并且 sizeof 运算符的计算结果为 size_t
.
The
stdlib.h
andstddef.h
header files define a datatype calledsize_t
1 which is used to represent the size of an object. Library functions that take sizes expect them to be of typesize_t
, and the sizeof operator evaluates tosize_t
.
size_t
的实际类型是平台相关的;一个常见的错误是假设 size_t
与 unsigned int 相同,这会导致编程错误,2 特别是随着 64 位架构变得越来越流行.
The actual type of size_t
is platform-dependent; a common mistake is to assume size_t
is the same as unsigned int, which can lead to programming errors,2 particularly as 64-bit architectures become more prevalent.
来自 C99 7.17.1/2
以下类型和宏定义在标准头文件stddef.h
The following types and macros are defined in the standard header
stddef.h
size_t
这是sizeof运算符结果的无符号整数类型
which is the unsigned integer type of the result of the sizeof operator
这篇关于我在哪里可以找到 size_t 的定义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我在哪里可以找到 size_t 的定义?
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01