我有一个main.cpp包括a.h(有自己的a.cpp(a.h 包含仅标头库 "stbi_image.h",如下所示:
#ifndef STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#endif
(https://github.com/nothings/stb(
*.cpp 包括自己的 *.h,使用一次 #pragma
但我仍然得到:
LNK1169 stb 故障LNK2005发现一个或多个多重定义的符号 原因已在 a.obj 文件中定义 = main.obj ...和一堆 别人
这对我来说似乎是对的,但正如我在这个问题中所理解的那样:多个定义和仅标头库
也许我应该将内联/静态添加到我需要的 stb_image.h 函数中?我做错了什么吗?
提前致谢
- 也许我应该将内联/静态添加到我需要的 stb_image.h 函数中?
不,您已经有办法将"stb_image函数"声明为静态或外部函数:
#define STB_IMAGE_STATIC
- 我做错了什么吗?是的,您编译"stb_image"两次,每次都包含"stb_image.h"因此,整个设计可以是:
图片.h:
#ifndef _IMAGE_H_
#define _IMAGE_H_
Class Image.h {
public:
Image() : _imgData(NULL) {}
virtual ~Image();
...
void loadf(...);
...
unsigned char* getData() const { return _imgData; }
protected:
unsigned char* _imgData;
};
#endif
图片.cpp:
#include "Image.h"
#define STB_IMAGE_IMPLEMENTATION // use of stb functions once and for all
#include "stb_image.h"
Image::~Image()
{
if ( _imgData )
stbi_image_free(_imgData);
}
void Image::load(...) {
_imgData = stbi_load(...);
}
主.cpp
#include "Image.h" // as you see, main.cpp do not know anything about stb stuff
int main() {
Image* img = new Image(); // this is my 'wrapper' to stb functions
img->load(...);
myTexture(img->getData(), ...);
return 0;
}