【C标准库】<stddef.h>

< stddef.h >

  • 简介
    • 定义变量
      • 定义宏

简介

定义各种变量和宏的头文件

定义变量

定义了三个数据类型,size_twchar_tptrdiff_t

  • size_tsizeof的结果,一般是long unsigned int。
    例如
#include 
#include 
typedef struct TEST{
    int a,b;
}test;

int main(){
    test x;
    static size_t off = (char*)&x->b - (char*)&x;
}
//得到字段b到test初始值的偏离
  • wchar_t用于描述宽字符,一般是int。
  • ptrdiff_t是指针相减的结果,一般是有符号整数。
    例如
#include 
#include 

int main(){
    char x[20];
    ptrdiff_t nx = &x[5]-&x[0];
    printf("%d\n", nx);    //5
    long int y[20];
    ptrdiff_t ny = &y[5]-&y[1];
    printf("%d\n", ny);    //4
    return(0);
}
//得到结构中某个字段距离结构体初始指针的距离

定义宏

  • NULL是一个空指针常量的值。
  • 宏函数offsetof(type, member-designator)用于确定结构的某个成员到起始位置的偏移字节,生成一个类型为size_t的整型变量,及结构成员相对于结构开头的字节偏移量。成员由member-designator给定,结构名称由type给定。
    例如,size_t的实例可改写为
static size_t off = offsetof(test, b)

你可能感兴趣的:(c语言,c++,开发语言)