结构体与共同体第一节(定义结构体类型变量的方法、结构体变量的引用)

 

一、定义结构体类型变量的方法

定义一个结构的一般形式为:

struct 结构名

{

      成员表列
};

成员表列由若干个成员组成,每个成员都是该结构的一个组成部分。对每个成员也必须作类型说明,其形式为:

类型说明符 成员名;

可以采取以下3种方法定义结构体类型变量:

(1)先声明结构体类型再定义变量名

例如:struct  student        student1, student2;

                    |            |                     |               |      

                  类型名   结构体             变量名      变量名

定义了student1和student2为struct student类型的变量,即它们具有struct student类型的结构.

 

struct student
  {
      int num;
      char name[20];
      char sex;
      int age;
      float score;
      char addr[30];
  } student1, student2

在定义了结构体变量后,系统会为之分配内存单元。

(2)在声明类型的同时定义变量

   这种形式的定义的一般形式为:

      struct 结构体名

   {

       成员表列

   }变量名表列;

struct student
{  
     int num;
     char name[20];
     char sex;
     int age;
     float score;
     char addr[30];
}student1,student2;

(3) 直接定义结构体类型变量

   其一般形式为:

      struct

    {

      成员表列

  }变量名表列;

即不出现结构体名。

#include<stdio.h>

void main()
{
	struct sutdent
	{
		int nun;
		char name[20];
		char sex;
		int age;
		float score;
		char addr[30];
	};
	struct sutdent sutdent1;
	struct sutdent sutdent2;
	
	printf("%lu\n", sizeof(sutdent));
}

 二、结构体变量的引用

在定义了结构体变量以后,当然可以引用这个变量。但应遵守以下规则:  
(1) 不能将一个结构体变量作为一个整体进行输入和输出。
例如: 打印student1的各个变量的值。
可以这样吗?
printf(″%d,%s,%c,%d,%f,%\n″,student1);

 

正确引用结构体变量中成员的方式为:

  结构体变量名.成员名

student1.num表示student1变量中的num成员,即student1的num(学号)项。可以对变量的成员赋值,例如:student1.num=100;
“.”是成员(分量)运算符,它在所有的运算符中优先级最高,因此可以把student1.num作为一个整体来看待。上面赋值语句的作用是将整数100赋给student1变量中的成员num。

#if 1
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>

void main()
{
#if 0
	struct date
	{
		int month;
		int day;
		int year;
	};
#endif

	struct student
	{
		int num;
		char *name;
		char sex;
		//struct date birthday;
		float score;
	} boy1, boy2;

	boy1.num = 007;
	boy1.name = "Jane";

	printf("Please input sex and score\n");
	scanf("%c %f", &boy1.sex, &boy1.score);

	boy2 = boy1;

	printf("Number =%d\nName = %s\n", boy2.num, boy2.name);
	printf("Sex = %c\nScore = %f\n", boy2.sex, boy2.score);
}

#endif
(2) 如果成员本身又属一个结构体类型,则要用若干个成员运算符,一级一级地找到最低的一级的成员。只能对最低级的成员进行赋值或存取以及运算。
对上面定义的结构体变量student1, 可以这样访问各成员:

    student1.num

  student1.birthday.month

(3) 对结构体变量的成员可以像普通变量一样进行各种运算(根据其类型决定可以进行的运算)。

例如:

   student2.score = student1.score;

   sum = student1.score + student2.score;

   student1.age++; 

   ++student2.age;

(4) 可以引用结构体变量成员的地址,也可以引用结构体变量的地址。
#if 0
#include <stdio.h>

void main()
{
      struct student
      {
            int num;
            char *name;
            char sex;
            float score;
      } boy1;
      
      boy1.num = 007;
      boy1.name = "Jane";
      
      printf("The address of struct is %o :\n", &boy1 );
      printf("The address of num is %o :\n", &boy1.num );

}
#endif
但不能用以下语句整体读入结构体变量:

  scanf(″%d,%s,%c,%d,%f,%s″,&student1);

结构体变量的地址主要用作函数参数,传递结构体变量的地址。

 

#if 1
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

void main()
{
    struct date
    {
        int month;
        int day;
        int year;
    };
    struct student
    {
        int num;
        char* name;
        char sex;
        float score;
        struct date brithday;
    };
    struct student boy1;
    struct student boy2;


    printf("Please input brithday (YY:)");
    scanf("%d", &boy1.brithday.year);
    printf("Please input brithday (MM:)");
    scanf("%d", &boy1.brithday.month);
    printf("Please input brithday (DD:)");
    scanf("%d", &boy1.brithday.day);

    boy2 = boy1;

    printf("boy1's brithday is %d-%d-%d\n", boy1.brithday.year, boy1.brithday.month, boy1.brithday.day);
    printf("boy2's brithday is %d-%d-%d\n", boy2.brithday.year, boy2.brithday.month, boy2.brithday.day);
#endif     
}
Please input brithday (YY:)2022
Please input brithday (MM:)03
Please input brithday (DD:)02
boy1's brithday is 2022-3-2
boy2's brithday is 2022-3-2

结构体变量的引用

(1) 正确引用结构体变量中成员的方式为:

  结构体变量名.成员名

(2) 如果成员本身又属一个结构体类型,则要用若干个成员运算符,一级一级地找到最低的一级的成员。只能对最低级的成员进行赋值或存取以及运算。

(3)对结构体变量的成员可以像普通变量一样进行各种运算(根据其类型决定可以进行的运算)。

(4)可以引用结构体变量成员的地址,也可以引用结构体变量的地址。

#if 0
#include <stdio.h>

void main()
{
      struct student
      {
            int num;
            char *name;
            char sex;
            float score;
      } boy1;
      
      boy1.num = 007;
      boy1.name = "Jane";
      
      printf("The address of struct is %o :\n", &boy1 );
      printf("The address of num is %o :\n", &boy1.num );

}
#endif

  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值