gpt4 book ai didi

c - 声明没有声明任何东西 : warning?

转载 作者:太空狗 更新时间:2023-10-29 16:40:57 30 4
gpt4 key购买 nike

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main()
{
struct emp
{
struct address
{
int a;
};
struct address a1;
};
}

此代码显示警告:-

警告:声明不声明任何内容(默认启用)

下面的代码没有显示警告

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>

int main()
{
struct emp
{
struct address
{
int a;
}a1;
};
}

为什么只在第一个代码中显示'warning'?

最佳答案

编译器显示警告的原因是因为它没有看到您为 emp 结构定义的 address 类型变量的名称,即使你确实在下一行使用address声明了一些东西,但我猜编译器不够聪明,无法解决这个问题。

如您所示,这会产生警告:

struct emp {
struct address {}; // This statement doesn't declare any variable for the emp struct.
struct address a1;
};

但不是这个:

struct emp {
struct address {} a1; // This statement defines the address struct and the a1 variable.
};

或者这个:

struct address {};

struct emp {
struct address a1; //the only statement declare a variable of type struct address
};

struct emp {} 不显示任何警告,因为此语句不在结构定义 block 内。如果您确实将它放在其中一个中,那么编译器也会对此显示警告。以下将显示两个警告:

struct emp {
struct phone {};
struct name {};
};

关于c - 声明没有声明任何东西 : warning?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21610637/

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