C语言宏定义里,用小括号中加花括号括起来的代码块,这种形式的宏定义理解不了 15

在Linux内核源代码中看到这么一个宏:/***container_of-castamemberofastructureouttothecontainingstructu... 在Linux内核源代码中看到这么一个宏:
/**
* container_of - cast a member of a structure out to the containing structure
* @ptr:the pointer to the member.
* @type:the type of the container struct this is embedded in.
* @member:the name of the member within the struct.
*
*/
#define container_of(ptr, type, member) ({\
const typeof( ((type *)0)->member ) *__mptr = (ptr);\
(type *)( (char *)__mptr - offsetof(type,member) );})
宏里面的语句的执行原理我大致明白,但是不明白的是,这个宏定义里用小括号(),将花括号{}代码块括起来,而花括号内有两条语句,宏是怎么知道要将第2条语句的结果返回的呢?
展开
 我来答
糖二灰
推荐于2017-11-26 · TA获得超过3940个赞
知道小有建树答主
回答量:1052
采纳率:75%
帮助的人:1062万
展开全部
宏定义就是无条件替换啊,当出现container_of(ptr, type, member)这种形式的语句时候,就无条件替换为
({\
const typeof( ((type *)0)->member ) *__mptr = (ptr);\
(type *)( (char *)__mptr - offsetof(type,member) );})
就跟普通的两条程序一样,没有什么特别难于理解的啊,
宏定义的存在本来就是为了简化书写的。
你看到的是container_of(ptr, type, member),
但是编译器遇到这个就会直接无条件转化了成下边那长的两句了。
Sph风飘絮
2021-08-30
知道答主
回答量:9
采纳率:0%
帮助的人:1.9万
展开全部
这种写法叫什么名字不清楚,好像是叫复合语句,作用就是和普通语句块一样,但是整个语句的值是最后一个表达式的值。
语法如下
({expression1; expression2; [...expression;]})
假设
int a = ({int b = 1; int c = 2; b + c;)}
此时a = 3。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cooke1234
2013-08-23 · TA获得超过6861个赞
知道大有可为答主
回答量:4617
采纳率:72%
帮助的人:3621万
展开全部
相当于#define myfunc(x) ({x=x+10; x - 1;})
返回的就是x-1的结果
使用方法: aa = myfunc(bb) 或者 if (myfunc(bb))
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式