程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 結構體類型定義(C語言),c語言

結構體類型定義(C語言),c語言

編輯:C++入門知識

結構體類型定義(C語言),c語言


結構體的定義形式如下:

struct 結構體名

{

  結構體成員

};

結構體變量的定義方式有三種:
1、先定義結構體,再定義變量:

eg.

struct student{

  char name[10];

  int age;

  int student_number;

};

struct student s1,s2;

2、定義結構體的同時定義變量:
eg.

struct student{

  char name[10];

  int age;

  int student_number;

}s1,s2;

在定義結構體student的同時定義了結構體變量s1,s2.

3、只定義結構體變量

eg.

struct{

  char name[10];

  int age;

  int student_number;

}s1,s2;

在這種情況下,如果還想定義一個變量s3,那麼要使用和定義s1、s2一樣的方法。

 

將typedef和結構體結合,比如說:

typedef struct _student{

  char name[10];

  int age;

  int student_number;

}student;

這個時候student就不是一個變量了,它是結構體struct _student的別名,如果想定義一個變量,就可以直接使用student

student s1;

而不需要struct _student s1;

另外還可以定義結構體指針類型:

typedef struct _student{

  char name[10];

  int age;

  int student_number;

}*student;

這個時候student s1;定義的變量就是一個結構體指針s1了。等價於struct _student *s1。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved