-
struct book{
-
char *name;
-
float price;
-
};
-
struct book a = {"hey", 9.9};
-
struct book b = {
-
name:"hello",
-
price: 19.9
-
};
-
struct book c = {
-
.name = "world",
-
.price = 10.9
-
};
第一种最常见,特别是在用户态程序中;第二、三种内核程序中用的较多;当然这个用法主要源于C89/C99的标准规范,试了一下,在gcc-4.1.2版本下第三种用法在用户态程序的编译过程中会报错。因此,我们在实际使用中,按需使用,不要为了用而用,否则可能会带来额外的隐患。
阅读(1626) | 评论(0) | 转发(0) |