The difference between typedef struct and struct in c++

下次还敢
Release: 2024-05-01 11:36:16
Original
725 people have browsed it

typedef struct和struct的区别:typedef struct创建结构体类型的别名,而struct定义新的结构体类型。typedef struct创建的别名在声明之后即可使用,而struct定义的结构体在定义之后才可使用。typedef struct和struct都不会创建额外的存储空间。

The difference between typedef struct and struct in c++

typedef struct和struct的区别

在C++中,typedef structstruct的区别在于:

  • 别名与定义:

    • typedef struct为现有struct类型创建别名,它仅定义一个新的类型名称,不会创建新的结构体。
    • struct用于定义一个新的结构体类型,它创建一个新的数据结构。
  • 使用方式:

    • typedef struct创建的别名可以用作类型名称,就像普通类型一样。
    • struct定义的结构体可以使用结构体名称来引用。
  • 可访问性:

    • typedef struct创建的别名在整个源文件中都可访问,即使在别名声明之后。
    • struct定义的结构体只有在结构体定义之后才可访问。
  • 存储空间:

    • typedef structstruct都不会创建额外的存储空间,它们只是方便地引用或创建结构体。

示例:

// 定义一个结构体 struct Point { int x; int y; }; // 为结构体创建别名 typedef struct Point PointAlias;
Copy after login

在上面的示例中,PointAliasPoint结构体的别名,可以通过以下方式使用:

PointAlias point; // 声明一个PointAlias类型的变量 point.x = 10; // 访问变量的成员
Copy after login

总结:

  • typedef struct创建结构体类型的别名,而struct定义新的结构体类型。
  • typedef struct创建的别名在声明之后即可使用,而struct定义的结构体在定义之后才可使用。
  • typedef structstruct都不会创建额外的存储空间。

The above is the detailed content of The difference between typedef struct and struct in c++. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!