zoukankan      html  css  js  c++  java
  • struct和typedef struct用法和区别

    1 首先://注意在C和C++里不同

    1.1 在C中定义一个结构体类型要用typedef:

    typedef struct Student
        {
        int a;
        }Stu;
    
    • 于是在声明变量的时候就可:Stu stu1;(如果没有typedef就必须用struct Student stu1;来声明)
    • 这里的Stu实际上就是struct Student的别名。Stu==struct Student
    • 另外这里也可以不写Student(于是也不能struct Student stu1;了,必须是Stu stu1;):
    typedef struct
        {
        int a;
        }Stu;
    
    
    

    1.2 在c++里很简单,直接

    struct Student
        {
        int a;
        };
    

    于是就定义了结构体类型Student,声明变量时直接Student stu2;

    2.其次:

    在c++中如果用typedef的话,又会造成区别:

    struct Student   
        {   
        int   a;   
        }stu1;//stu1是一个变量  
    
     typedef struct Student2   
        {   
        int   a;   
        }stu2;//stu2是一个结构体类型=struct Student 
    
    • 使用时可以直接访问 stu1.a
    • 但是stu2则必须先 stu2 s2;
    • 然后 s2.a=10;

    更多参考 https://www.cnblogs.com/qyaizs/articles/2039101.html

  • 相关阅读:
    第一章 初识shiro
    LDAP概念
    css定位
    css随笔1
    自己动手实现信息检索系统
    IntelliJ IDEA和pycharm注册码
    俄罗斯农夫算法
    [NOIP2013]转圈游戏
    [codevs1287]矩阵乘法
    [洛谷1314]无序字母对
  • 原文地址:https://www.cnblogs.com/ZY-Dream/p/10033991.html
Copyright © 2011-2022 走看看