gpt4 book ai didi

c++ - 静态指针对函数的 undefined reference

转载 作者:行者123 更新时间:2023-11-28 00:16:48 24 4
gpt4 key购买 nike

我正在尝试在运行时加载 dll,但我遇到了一个问题:我有一个在主程序中分配的小助手类。指向该对象的指针被传递给加载的 dll。为了测试它,我想从类 (printLine) 中调用一个函数。但是我无法编译 dll,因为我得到:

Utility.o: In function `ZN7Utility6onInitEv':
D:\Benutzer\Jan\Desktop\Programmierprojekte\Game Engine 5.0\Utilities\Debug/../Utility.cpp:7: undefined reference to `ModuleHelper::printLine(std::string)'
collect2.exe: error: ld returned 1 exit status

这两个文件是dll的唯一内容:

实用程序.h:

#ifndef UTILITY_H_
#define UTILITY_H_

#include <iostream>
#include <Definitions.h>
#include <ModuleHelper.h>

class Utility
{
public:
Utility();
~Utility();

static void onInit();
static void onUpdate();

static char* getName();
static char** getDependencies();
static int getCountDependencies();
static char* getServeAs();

static void setModuleHelper(ModuleHelper* helper);

private:
static constexpr char* name = "Utility";
static constexpr char** dependencies = nullptr;
static constexpr int countDependencies = 0;
static constexpr char* serveAs = "";
static ModuleHelper* moduleHelper;
};

extern "C" //GAME_API is a dllexport macro
{
char* GAME_API getName()
{
return Utility::getName();
}

char** GAME_API getDependencies()
{
return Utility::getDependencies();
}

int GAME_API getCountDependencies()
{
return Utility::getCountDependencies();
}

char* GAME_API getServeAs()
{
return Utility::getServeAs();
}

noargfunc GAME_API onInit()
{
return Utility::onInit;
}

noargfunc GAME_API onUpdate()
{
return Utility::onUpdate;
}

void GAME_API setModuleHelper(ModuleHelper* moduleHelper)
{
Utility::setModuleHelper(moduleHelper);
}
}
#endif /* UTILITY_H_ */

实用工具.cpp:

#include "Utility.h"

ModuleHelper* Utility::moduleHelper; //with "= nullptr" or "= NULL" it didn't work either

void Utility::onInit()
{
moduleHelper->printLine("Hello from Utilities"); //wrapper for std::cout
}

void Utility::onUpdate()
{

}

char* Utility::getName()
{
return name;
}

char** Utility::getDependencies()
{
return dependencies;
}

int Utility::getCountDependencies()
{
return countDependencies;
}

char* Utility::getServeAs()
{
return serveAs;
}

void Utility::setModuleHelper(ModuleHelper* helper)
{
moduleHelper = helper;
}

最佳答案

undefined reference 意味着未找到实现。

看起来您只是为了使用该库而包含了头文件。

主要问题(链接器错误 - 而不是运行时!)是您可能忘记链接库。 (Visual Studio 中的项目引用)

无论如何,如果您可以编译和链接您的代码,您就会发现下一个错误。

ModuleHelper* Utility::moduleHelper; //with "= nullptr" or "= NULL" it didn't work either

如果您用 NULL 初始化 moduleHelper,然后用“->”解引用指针并试图做某事,您将得到空指针异常。您必须初始化它...(可能是 = new ModuleHelper)。由于我不知道使用的库,您必须自己阅读文档。

关于c++ - 静态指针对函数的 undefined reference ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29709875/

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