通用定义:stddef.h

作者:追风剑情 发布于:2020-6-29 9:37 分类:C

该头文件定义了一些类型和宏。

stddef.h类型
类型 描述
ptrdiff_t 有符号整数类型,表示两个指针之差
size_t 有符号整数类型,表示sizeof运算符的结果
wchar_t 整数类型,表示支持的本地化所指定的最大扩展字符集
NULL 实现定义的常量,表示空指针
offsetof(type, member-designator) 展开为size_t类型的值,表示type类型结构的指定成员在该结构中的偏移量,以字节为单位。如果成员是一个位字段,该宏的行为是未定义的

示例:offsetof()

  1. //Microsoft Visual Studio
  2. #define _CRT_SECURE_NO_WARNINGS
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <stdbool.h>
  6. #include <stddef.h>
  7.  
  8. struct car
  9. {
  10. char brand[30];
  11. char model[30];
  12. double hp;
  13. double price;
  14. };
  15.  
  16. int main(int argc, char* argv[])
  17. {
  18. //hp成员的偏移量
  19. size_t brand_offset = offsetof(struct car, brand);
  20. size_t model_offset = offsetof(struct car, model);
  21. size_t hp_offset = offsetof(struct car, hp);
  22. size_t price_offset = offsetof(struct car, price);
  23. printf("brand_offset=%d, model_offset=%d, hp_offset=%d, price_offset=%d\n",
  24. brand_offset, model_offset, hp_offset, price_offset);
  25.  
  26. system("pause");
  27. return 0;
  28. }

运行测试
111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号