使用另一个头文件 - c 的头文件

发布于 2024-10-29 18:37:04 字数 682 浏览 0 评论 0原文

可能的重复:
如何在头文件中声明一个结构体供c中的多个文件使用?

c代码,头文件问题。

我有一个头文件(list.h)定义两个链表结构,另一个queue.h包含队列的定义。

list.h 中定义了一个包含列表和队列的结构体,因此它依赖于queue.h 文件。

包含所有其他结构的结构在 list.h 文件中定义,处理它的函数在 list.c 文件中定义。因此,这两个文件都需要包含queue.h。

但是,如果我将其包含在 list.h 和 list.c 文件中,则会出现以下错误。

..\/queue.h:13:16: error: redefinition of 'struct qqq'
..\/queue.h:13:16: note: originally defined here

如果不是其中之一,则存在导致标头丢失的其他错误: 它没有定义包含队列的结构。

有什么办法可以做到这一点...?

Possible Duplicate:
How to declare a structure in a header that is to be used by multiple files in c?

c code, header file issue.

I have a header (list.h) file defining two linked list structures, and another queue.h which includes the definition of a queue.

There is a struct that includes the lists and queue together, defined in list.h, which therefore depends on the queue.h file.

A struct containing all the others is defined in the list.h file and the functions that deal with it are defined in the list.c file. Consequently both files need to include queue.h.

However if i include it in both the list.h and list.c files i get the following error.

..\/queue.h:13:16: error: redefinition of 'struct qqq'
..\/queue.h:13:16: note: originally defined here

if not in one or the other then other errors to the effect that the header is missing:
it doesn't define the structure containing the queue.

Is there any way to do this...?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

℉服软 2024-11-05 18:37:04

您应该使用 #ifndef 预处理器语句来防止头文件的内容要包含两次:

queue.h:

#ifndef QUEUE_H
#define QUEUE_H

// QUEUE_H can be anything, but must be a unique constant specifiqu to your file

typedef struct {
    // ...
} queue;

#endif

只需为所有头文件添加此内容(每次使用不同的常量),它就会起作用。

You should use the #ifndef preprocessor statement to prevent the content of your headers to be included twice :

queue.h:

#ifndef QUEUE_H
#define QUEUE_H

// QUEUE_H can be anything, but must be a unique constant specifiqu to your file

typedef struct {
    // ...
} queue;

#endif

Simply to this for all your header files (with different constants each time), and it will work.

柠北森屋 2024-11-05 18:37:04

包含守卫 在这种情况下会很有帮助。

Include Guards will be helpful in this case.

婴鹅 2024-11-05 18:37:04

使用它来定义列表和队列头文件

#ifndef HEADERNAME_H_
#define HEADERNAME_H_
// your code for header file    
#endif 

use this to define the both list and queue header files

#ifndef HEADERNAME_H_
#define HEADERNAME_H_
// your code for header file    
#endif 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文