chunlanse2014

导航

2.结构类型变量的说明

说明结构变量有以下三种方法。以上面定义的stu为例来加以说明。

1) 先定义结构,再说明结构变量。
如:

1 struct stu
2 {
3     int num;
4     char name[20];
5     char sex;
6     float score;
7 };
8 struct stu boy1,boy2;

说明了两个变量boy1和boy2为stu结构类型。

也可以用宏定义使一个符号常量来表示一个结构类型。例如:

1 #define STU struct stu
2 STU
3 {
4     int num;
5     char name[20];
6     char sex;
7     float score;
8 };
9 STU boy1,boy2;

 

2) 在定义结构类型的同时说明结构变量。
例如:

1 struct stu
2 {
3     int num;
4     char name[20];
5     char sex;
6     float score;
7 }boy1,boy2;

 

这种形式的说明的一般形式为:
    struct 结构名

    {
        成员列表
    }变量名列表;

3) 直接说明结构变量。
例如:

1 struct
2 {
3     int num;
4     char name[20];
5     char sex;
6     float score;
7 }boy1,boy2;

 

这种形式的说明的一般形式为:
    struct

    {
        成员列表
    }变量名列表;

第三种方法与第二种方法的区别在于第三种方法中省去了结构名,而直接给出结构变量。三种方法中说明的boy1、boy2变量都具有下图所示的结构。


说明了boy1、boy2变量为stu类型后,即可向这两个变量中的各个成员赋值。在上述stu结构定义中,所有的成员都是基本数据类型或数组类型。成员也可以又是一个结构,即构成了嵌套的结构。例如,下图给出了另一个数据结构。


按图可给出以下结构定义:

 1 struct date
 2 {
 3     int month;
 4     int day;
 5     int year;
 6 };
 7 struct
 8 {
 9     int num;
10     char name[20];
11     char sex;
12     struct date birthday;
13     float score;
14 }boy1,boy2;

 

首先定义一个结构date,由month(月)、day(日)、year(年) 三个成员组成。在定义并说明变量 boy1 和 boy2 时,其中的成员birthday被说明为data结构类型。成员名可与程序中其它变量同名,互不干扰。

posted on 2015-04-06 21:27  chunlanse2014  阅读(332)  评论(0编辑  收藏  举报