1. 程式人生 > >Linux c括號作用域【原創筆記】

Linux c括號作用域【原創筆記】

地址 fine turn print key tdi def macro stdio.h

大師指點後,所做的筆記,很感謝一起願意研究技術的同事,以下不是本人原創,是他分析的成果

#include <stdio.h> #include <time.h> 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=0x0x601050 macro==>>Line=38,&__key=0x0x601054 &a=0x0x601058 function==>>Line=21,&__key1=0x0x601044 &a1=0x0x601048 function==>>Line=21,&__key1=0x0x601044 &a1=0x0x601048

Linux c括號作用域【原創筆記】