gpt4 book ai didi

c - 结构雇员 {...} em1,em2;或 struct EMPLOYEE {...};

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

这两个是一样的吗?

struct EMPLOYEE {
...
};

int main (void)
{
//Local Declaration
struct EMPLOYEE em1;
struct EMPLOYEE em2;
...

return 0;
}

struct EMPLOYEE {
...
}em1,em2;

如果我使用后一种情况,我是否不需要像前一种情况那样在主函数中声明这些结构?

最佳答案

struct EMPLOYEE {
...
};

定义一个名为 EMPLOYEE 的结构,但不创建任何实例。

struct EMPLOYEE {
...
}em1,em2;

定义结构 EMPLOYEE 并创建两个名为 em1em2 的实例。

关于c - 结构雇员 {...} em1,em2;或 struct EMPLOYEE {...};,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15537726/

25 4 0