C语⾔进阶(⼀):宏函数内定义结构体
⽰例⼀:
#define SPD_LIST_HEAD_NOLOCK(name, type) \
struct name { \
struct type *first; \
struct type *last; \
}
SPD_LIST_HEAD_NOLOCK(, scheduler)schedulerq;//宏函数调⽤,不⽤管结构体⾥⾯的内容。也不⽤管scheduler,它是⼀个结构体
//这句话的意思是struct name整个结构体改名为sqcheduler,两种理解⽅式
struct name{...}sqcheduler;//第⼀种
struct name sqcheduler;//第⼆种
补充知识:定义结构体变量最好是这样定义:struct name *sqcheduler,因为结构体变量作为函数形参进⾏传参时,是⼀定要传地址的,因为在调⽤函数后,在函数内部使⽤结构体变量需要⽤到结构体内部的变量。⽽访问结构体内部需要⽤"->",它可以理解是⼀个指针。所以结构体变量作为形参时必须要传地址。
SPD_LIST_HEAD_INIT_NOLOCK(&schedulerq);//不⽤管SPD_LIST_HEAD_INIT_NOLOCK,只需要知道结构体传参的形式
如果schedulerq不作为形参时,它实际是可以等于scheduler的
为了更好的理解,我把scheduler展⽰出来:
struct scheduler {
int flag;
int reschedule;
int id;
};
现在,我们在SPD_LIST_HEAD_INIT_NOLOCK(&schedulerq);下⾯敲schedulerq时编译器会提⽰
这就更加验证了我的想法。
⽰例⼆:
#define SPD_LIST_HEAD_NOLOCK(name, type) \
struct name { \
struct type *first; \
struct type *last; \
} name;
这种⽤法暂时不知道,知道在更新吧。
这样写是不会报错的,但是不能再定义:
SPD_LIST_HEAD_NOLOCK(, scheduler)name;
因为编译器会报错:
c语言struct用法例子如果不加name呢?
SPD_LIST_HEAD_NOLOCK(, scheduler);
也不能,编译器会报:
⽰例⼆的⽤法暂时没有到,如果有⼤神知道,请告知,我将万分感谢!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论