在csdn上看到一段代码。觉得很有意思,于是便自己动动手分析分析。
这是用于分析C语言中的作用的一段代码,值得研究研究。
代码中calloc之后并没有free掉,这是个不好的习惯.
好吧,我们从代码开始:
原始代码
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 int x(const int int_a) {return int_a;}
5
6 struct x
7 {
8 int x;
9 };
10
11 #define x(x) x
12
13 int main(int argc, char *argv[])
14 {
15 int *x = calloc(1, sizeof x);
16
17 x: (((struct x *)x)->x) = x(5);
18
19 printf("%p\n", ((struct x *)x)->x);
20
21 return 0;
22 }
23 /*
24 output:
25 0x5
26 */
[0] 变量名(包括指针名,函数名)和自定义类型名(struct)存在于不同namespace.所以b不会和a,c冲突
1 int x(const int int_a) {return int_a;} //a
2
3 struct x //b
4 {
5 int x;
6 };
7
8 #define x(x) x
9
10 int main(int argc, char *argv[])
11 {
12 int *x = calloc(1, sizeof x); //c
13
14 x: (((struct x *)x)->x) = x(5);
15
16 printf("%p\n", ((struct x *)x)->x);
17
18 return 0;
19 }
版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明!