gpt4 book ai didi

c - C 中的 Typedef,使用 * 这是做什么的?

转载 作者:太空宇宙 更新时间:2023-11-04 07:07:25 25 4
gpt4 key购买 nike

我以前使用过 typedef,但我从未使用过带有指针的类型。这对 typedef 有什么影响?

引用代码:

typedef struct node NODE,  *PNODE, **PPNODE;

最佳答案

除了使用 struct node 之外,您还可以将其替换为 NODE

你可以用 PNODE 代替 struct node*

除了使用 struct node** 之外,您还可以将其替换为 PPNODE

语句可以分解为

typedef struct node NODE;
typedef struct node* PNODE; // PNODE is pointer to node
typedef struct node** PPNODE; // PPNODE is pointer to pointer to node

关于c - C 中的 Typedef,使用 * 这是做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31398717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com