9

我有一个 main.cpp,包括 ah(它有自己的 a.cpp)啊,包括头文件库“stbi_image.h”,如下所示:

#ifndef STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#endif

https://github.com/nothings/stb

*.cpp 包含它自己的 *.h 并使用 #pragma once

但我仍然得到:

LNK1169 发现一个或多个多重定义的符号 LNK2005 stb-failure 原因已在 a.obj 文件 = main.obj 中定义...和其他一堆

这对我来说似乎是正确的,但正如我在这个问题中所理解的那样: Multiple definition and header-only libraries

也许我应该将 inline/static 添加到我需要的 stb_image.h 函数中?难道我做错了什么?

提前致谢

4

1 回答 1

8
  1. 也许我应该将 inline/static 添加到我需要的 stb_image.h 函数中?

不,您已经有办法将“stb_image 函数”声明为静态或外部:

#define STB_IMAGE_STATIC
  1. 难道我做错了什么 ?是的,你编译 '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(...);
}

主文件

#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;
}
于 2019-01-25T14:57:31.843 回答