gpt4 book ai didi

c++ - 指向 C++ 结构的指针

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

如果我像这样在 C++ 中创建一个结构:

typedef struct node {
int item;
int occurrency;
};

我知道结构是使用连续空间在内存中分配的,但是结构的名称是什么(本例中的 node)?给结构命名的简单方法?

最佳答案

在 C++ 中,您不必使用 typedef 来命名结构类型:

struct node {
int item;
int occurrency;
};

足够了。

指向该结构实例的指针将定义为 node* mypointer;

例如:您想使用 new 分配一个新实例:

node* mypointer = new node;

关于c++ - 指向 C++ 结构的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9311984/

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