struct
1 | inflatable hat; |
由于hat的类型是inflatable,因此可以使用成员运算符(.)来访问各个成员。例如,hat.volume指的是结构的volume成员,hat.privce,指的是price成员。
指向结构体变量的指针
要注意的是,只有“指针变量名”后面才能加“->”,千万不要在成员名后面加“->”。
以下 3 种形式是等价的:
• 结构体变量.成员名。
• (*指针变量).成员名。
• 指针变量->成员名。
I'm so cute. Please give me money.
- Post link: https://github.com/TheBge/TheBge.github.io/2020/12/02/%E7%BB%93%E6%9E%84%E4%BD%93/
- Copyright Notice: All articles in this blog are licensed under unless otherwise stated.
若没有本文 Issue,您可以使用 Comment 模版新建。
GitHub IssuesGitHub Discussions