标签:com http class style div code color tab ble int type
不完整声明
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | /* 方法一   */structtag_a{    structtag_b *bp;  /* 这里struct tag_b 还没有定义,但编译器可以接受 */    intvalue;};structtag_b{    structtag_a *ap;    intvalue;};typedefstructtag_a A;typedefstructtag_b B; /*  方法二   */structtag_a;   /* 使用结构体的不完整声明(incomplete declaration) */structtag_b;typedefstructtag_a A; typedefstructtag_b B;structtag_a{    structtag_b *bp;  /* 这里struct tag_b 还没有定义,但编译器可以接受 */    intvalue;};structtag_b{    structtag_a *ap;    intvalue;}; | 
标签:com http class style div code color tab ble int type
原文地址:http://www.cnblogs.com/chen-/p/3698139.html