我有一个 .h 文件,我打算将其仅用于存储将在我的程序中显示的所有信息字符串。在我的 info.h 中:
#ifndef __INFO_H
#define __INFO_H
char *info_msg = "This is version 1.0 of NMS.";
//all other strings used by view.c and controller.c
#endif
然后在我的 view.h 我有如下:
//view.h
#ifndef __VIEW_H
#define __VIEW_H
#include "info.h"
//other stuff like method declaration etc.
#endif
我的 controller.h 正在使用 view.h:
//controller.h
#ifndef __CONTROLLER_H
#define __CONTROLLER_H
#include "view.h"
#include "model.h"
//other stuff line method declaration etc.
#endif
主.c:
#include "controller.h"
int main()
{
//stuff
}
视图.c:
#include "view.h"
char esc,up,down,right,left;
void change_character_setting(char pesc, char pup, char pdown, char pright, char pleft)
{
esc = pesc;
up = pup;
down = pdown;
right = pright;
left = pleft;
}
void print_warning()
{
printf("%s \n",info_msg);
}
当我尝试创建可执行文件时,链接器会抱怨:
/tmp/ccqylylw.o:(.data+0x0): multiple definition of `info_msg'
/tmp/cc6lIYhS.o:(.data+0x0): first defined here
我不确定为什么它会看到两个定义,因为我正在使用保护块。我试图在这里谷歌,但没有任何具体的出现。有人可以解释它是如何看到多个定义的吗?如何在 Java 中实现简单的操作,以使用单个文件在 C 中进行所有文本操作?