博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux c括号作用域【原创笔记】
阅读量:5847 次
发布时间:2019-06-18

本文共 1608 字,大约阅读时间需要 5 分钟。

大师指点后,所做的笔记,很感谢一起愿意研究技术的同事,以下不是本人原创,是他分析的成果 #include 
#include
struct lock_class_key { int ck;};#define mutex_init() \do { \ static struct lock_class_key __key; \ static int a; \ \ printf("macro==>>Line=%d,&__key=0x%p &a=0x%p\n", __LINE__, &__key, &a); \} while (0)void __mutex_init(){ do { static struct lock_class_key __key1; static int a1; printf("function==>>Line=%d,&__key1=0x%p &a1=0x%p\n", __LINE__, &__key1, &a1); } while (0); }int main(void){//do { static struct lock_class_key __key; static int a; printf("macro==>>Line=%d,&__key=0x%p &a=0x%p\n", 28, &__key, &a); } while (0);===>宏展开就是这样的,gcc -E -o test.i test.c//do { static struct lock_class_key __key; static int a; printf("macro==>>Line=%d,&__key=0x%p &a=0x%p\n", 29, &__key, &a); } while (0);//{ static struct lock_class_key __key; static int a; printf("macro==>>Line=%d,&__key=0x%p &a=0x%p\n", 28, &__key, &a); }//{ static struct lock_class_key __key; static int a; printf("macro==>>Line=%d,&__key=0x%p &a=0x%p\n", 29, &__key, &a); } {
static int b1;} //=======>这种括号是作用域,一个函数名本来只有一个作用域,但是如果函数里面加了这种,相当于是在两个作用域里面,是允许这样定义的,地址也会不同//printf("fuck!!\n"); {
static int b1;} mutex_init(); mutex_init(); __mutex_init(); __mutex_init(); return (0);}执行结果:macro==>>Line=37,&__key=0x0x60104c &a=0x0x601050macro==>>Line=38,&__key=0x0x601054 &a=0x0x601058function==>>Line=21,&__key1=0x0x601044 &a1=0x0x601048function==>>Line=21,&__key1=0x0x601044 &a1=0x0x601048

 

转载地址:http://ftwjx.baihongyu.com/

你可能感兴趣的文章
URL与ASCII
查看>>
OpenGL的视图变换
查看>>
Redis.conf 说明
查看>>
我的友情链接
查看>>
js 将json字符串转换为json兑现
查看>>
java读取properties配置文件
查看>>
LVS+keepalived负载均衡
查看>>
Start Developing iOS Apps Today系列(六)
查看>>
UITableview中cell重用引起的内容重复的问题
查看>>
stm32 ADC使用 单通道 多通道
查看>>
UVA 10003 Cutting Sticks
查看>>
r710 网卡驱动升级灰常蛋疼,现在在祈祷
查看>>
Weave and Docker for Mac: The bridge between local and remote services
查看>>
Windows7操作系统安装教程(图文)
查看>>
springmvc 不指定访问路径后缀都会匹配的
查看>>
Ubuntu下口袋妖怪终端主题安装
查看>>
我的友情链接
查看>>
jquery判断对象是否存在
查看>>
commons-pool实战之 PoolableObjectFactory和ObjectPool
查看>>
高性能WEB开发之flush让页面分块逐步呈现
查看>>