内核版别:2.6.14
今日剖析内核时又看到了typeof,只知道它大概是回来变量的类型,后来上网查了下发现这个关键字在linux顶用的十分多。假如你对sizeof很熟悉的话,那么大可进行类推,sizeof(exp)回来的是exp的数据类型巨细,那么typeof(exp.)回来的便是exp的数据类型。下面是linux内核中typeof的一些比如。
include/linux/kernel.h
[plain]view plaincopy
print?
- /*
- *min()/max()macrosthatalsodo
- *stricttype-checking..Seethe
- *”unnecessary”pointercomparison.
- */
- #definemin(x,y)({\
- typeof(x)_x=(x);\//_x的数据类型和x相同
- typeof(y)_y=(y);\
- (void)(&_x==&_y);\
- _x<_y?_x:_y;})
- #definemax(x,y)({\
- typeof(x)_x=(x);\
- typeof(y)_y=(y);\
- (void)(&_x==&_y);\
linux/include/asm-arm/uaccess.h
[plain]view plaincopy
print?
- #defineget_user(x,p)\
- ({\
- constregistertypeof(*(p))__user*__pasm(“r0”)=(p);\//__p的数据类型和*(p)的指针数据类型是相同的,__p=p
- registertypeof(*(p))__r2asm(“r2”);\//__r2的数据类型和*(p)的数据类型是相同的
- registerint__easm(“r0”);\
- switch(sizeof(*(__p))){\
- case1:\
- __get_user_x(__r2,__p,__e,1,”lr”);\
- break;\
- case2:\
- __get_user_x(__r2,__p,__e,2,”r3″,”lr”);\
- break;\
- case4:\
- __get_user_x(__r2,__p,__e,4,”lr”);\
- break;\
- case8:\
- __get_user_x(__r2,__p,__e,8,”lr”);\
- break;\
- default:__e=__get_user_bad();break;\
- }\
- x=__r2;\
- __e;\
- })
下面写一个小程序示例一下:
[plain]view plaincopy
print?
- #include
- typedefstruct
- {
- intx;
- chary;
- }astruct,*pastrcut;
- intmain()
- {
- intsizem,sizew;
- intx=3;
- typeof(&x)m=&x;
- sizem=sizeof(m);
- *m=5;
- typeof(((astruct*)5)->y)w;
- sizew=sizeof(w);
- w=”a”;
- return1;
- }
首先看main函数里的m变量,这个变量的类型便是typeof(&x), 因为x是int型的(这儿与x是否被赋值一点联系都没有),所以&x应该是int *类型,那么typeof(&x)回来的类型便是int*,所以m天然也便是个int*类型的。
然后咱们看w变量,其类型是 typeof(((astruct *)5)->y), 其间astruct是一个被界说的结构类型,其间的y元素是char类型,那么((astruct *)5)->y是啥意思呢?在这儿5并不是真实的变量,能够把它理解为一个代替运用的符号,当然这个符号最好是一个数,其意思更能够理解为一个被赋值了的变量,这个数能够是0,3,也能够是8也能够随意什么都能够。那么((astruct *)5)->y只是便是表明了y这个变量,所以typeof的成果便是y元素的类型,也便是char。