struct和typedef struct用法

 2023-09-16 阅读 15 评论 0

摘要:参考:http://www.cnblogs.com/qyaizs/articles/2039101.html C语言: typedef struct Student{int score;}Stu; //Stu是结构类型,是Student的别名,Stu==struct Student Stu stu1; //stu1是一个Stu结构类型的变量 或者 struct Student{int

参考:http://www.cnblogs.com/qyaizs/articles/2039101.html

C语言:

typedef struct Student{int score;}Stu;       //Stu是结构类型,是Student的别名,Stu==struct Student

Stu stu1;   //stu1是一个Stu结构类型的变量

 

或者

struct Student{int score;};    struct Student  stu1; //stu1是一个Student结构类型的变量,只能这样定义

struct函数用法, 

还或者

typedef struct
{int score;}Stu; //Stu是结构类型

Stu stu1;     //这里只能这样定义一个新的变量

 

  

C++:

struct Student
{int score;};  Student stu1;//比C语言少一个struct

typedef怎么用? 

并且,如果有typedef:

struct Student1
{int score;}stu1; //stu1是一个变量
typedef   struct   Student2   
{   int   score;   }stu2; //stu2是一个结构类型=struct Student2,等同于c语言

 

总结:

不用记住全部,只要记最习惯的写法,用c++:

struct Student
{int score;}stu1; //stu1是一个变量

Student stu2,stu3;

type struct? 

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/2/70132.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息