gpt4 book ai didi

c - 尝试在 C 中实现封装时出现链接器错误

转载 作者:太空狗 更新时间:2023-10-29 14:49:20 26 4
gpt4 key购买 nike

考虑这些文件:

对象.h

#pragma once
struct obj;

int obj_size(void);
void obj_set_id(struct obj*, int);
int get_obj_id(struct obj*);

对象.c

#include "obj.h"


struct obj
{
int id;
};

int obj_size(void) {
return sizeof(struct obj);
}

void obj_setid(struct obj* o, int i) {
o->id = i;
}

int obj_getid(struct obj* o) {
return o->id;
}

主.c

#include <stdio.h>
#include "obj.c"

int main()
{
puts("hello world");
}

事实证明,这是在 C 中实现封装的方式 (https://en.wikipedia.org/wiki/Opaque_pointer#C)。但是,当我尝试编译时出现链接器错误。这些是 Visual Studio 的提示:

Error LNK2005 _obj_getid already defined in obj.obj
Error LNK2005 _obj_setid already defined in obj.obj
Error LNK2005 _obj_size already defined in obj.obj
Error LNK1169 one or more multiply defined symbols found

如果有人想知道的话,它被设置为编译为 C 代码。

这些是我尝试用 clang 编译它时遇到的错误:

 clang-7 -pthread -lm -o main main.c obj.c
/tmp/obj-36b460.o: In function `obj_getid':
obj.c:(.text+0x30): multiple definition of `obj_getid'
/tmp/main-a2c3dc.o:main.c:(.text+0x30): first defined here
/tmp/obj-36b460.o: In function `obj_setid':
obj.c:(.text+0x10): multiple definition of `obj_setid'
/tmp/main-a2c3dc.o:main.c:(.text+0x10): first defined here
/tmp/obj-36b460.o: In function `obj_size':
obj.c:(.text+0x0): multiple definition of `obj_size'
/tmp/main-a2c3dc.o:main.c:(.text+0x0): first defined here
/tmp/main-a2c3dc.o: In function `main':
main.c:(.text+0x59): undefined reference to `obj_set_id'
clang-7: error: linker command failed with exit code 1 (use -v to see invocation)
compiler exit status 1

我试过extern-ing obj.h 中的函数声明,但这也不起作用。 inline 也一样。

最佳答案

以当前状态回答您的问题:

您的错误是包含“obj.c”而不是“obj.h”。

#include 指令的工作原理(简而言之)就像命名文件的内容替换指令一样。

如果您编译“main.c”和“obj.c”,您会将“obj.c”中的所有内容两次提供给链接器。这就是它给您错误的原因。


如果您有新信息,您可以编辑您的问题以更新它。

关于c - 尝试在 C 中实现封装时出现链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58414011/

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