gpt4 book ai didi

c - 这段代码中 b 的类型是什么?

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

typedef struct node {
int value;
struct node *next;
} NodeT;
const NodeT *a,b,c;

变量 b 实际上是一个常量结构元素吗?

最佳答案

Is variable b actually a constant struct element?

你的 b 有类型 const NoteT,这意味着 const struct node,作为声明:

const NoteT *a,b,c;

相当于:

const NoteT *a;
const NoteT b;
const NoteT c;

一般来说,如果你有这样的声明:

type *x, y, z, *w, ... ;

类型type适用于所有变量,但只有那些前面有*的变量才是指向该类型的指针。

关于c - 这段代码中 b 的类型是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42069403/

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