gpt4 book ai didi

c++ - 不能在另一个文件中包含结构

转载 作者:行者123 更新时间:2023-11-27 23:44:14 25 4
gpt4 key购买 nike

我正在用 C++ 制作一个多文件项目。我有这段代码:

列表.h

struct elem
{
account info;
elem* next;
};

typedef elem* lista;

此处显示错误,声明了“lista* a”。

登录.h:

struct account
{
string user = "";
int hash_pass = 0;
};

struct list
{
lista* a;
int size;
};

登录.cc:

#include "login.h"
#include "lista.h"
....

lista.cc

#include "login.h"
#include "lista.h"
....

在 lista.cc 和 login.cc 中,我包含了 login.h 和 lista.h,但在 login.h 中不将 lista 识别为类型的名称。

最佳答案

Circular dependency! 假设 string 类型在头文件的其他地方定义明确(可能是 std::string?),这是因为您以错误的顺序包含了文件。

#include "login.h"
#include "lista.h"
....

这基本上等同于:

struct account
{
string user = "";
int hash_pass = 0;
};

struct list
{
lista* a;
int size;
};

struct elem
{
account info;
elem* next;
};

typedef elem* lista;
....

如您所见,lista 甚至出现在 typedef 之前,这就是您收到错误的原因。

显然您不想关心包含头文件的顺序,所以这里正确的解决方案是在 login.h 中包含 lista.h > 带有适当的头部防护装置。 但在这种情况下这还不够:这里存在循环依赖,因为 lista.h 需要来自 login 的 struct account。 hlogin.h 需要来自 lista.hlista。因此,我们也添加了前向声明。参见 this link获取更多信息。您的最终代码将是:

lista.h:

#ifndef LISTA_H_
#define LISTA_H_
struct account; // forward declaration

struct elem
{
account* info; // notice that `account` now has to be a pointer
elem* next;
};

typedef elem* lista;
#endif

login.h :

#ifndef LOGIN_H_
#define LOGIN_H_
#include "lista.h"

struct account
{
string user = "";
int hash_pass = 0;
};

struct list
{
lista* a;
int size;
};
#endif

关于c++ - 不能在另一个文件中包含结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51927142/

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