QLibrary-导入一个类



我有一个QT库,我想在另一个项目中导入它。

现在,由于我希望这样,即使在修改库时,其他项目也不需要再次编译,所以我开始使用QLibrary。

但是。。。我无法导入类。或者更好的是,我可以导入类,但不能访问它的方法。

这是我举的例子。

这是类声明:

class TESTDLL_LIBSHARED_EXPORT TestDLL_lib
{
public:
    TestDLL_lib();
    int a;
    int b;
    int c;
    int getValues();
}; 

这就是实现:

#include "testdll_lib.h"
TestDLL_lib::TestDLL_lib()
{
    a = 10;
    b = 20;
    c = 30;
}
int TestDLL_lib::getValues()
{
    return a+b+c;
}
extern "C" TESTDLL_LIBSHARED_EXPORT TestDLL_lib* create_TestDLL_lib()
{
   return new TestDLL_lib();
}

虽然这是主文件,但在另一个项目中:

#include <testdll_lib.h>
#include <QDebug>
#include <QLibrary>
int main(int argc, char *argv[])
{
    QLibrary library("TestDLL_lib");
    if (library.load())
    {
        typedef TestDLL_lib* (*create_TestDLL_lib_fun)();
        create_TestDLL_lib_fun create_TestDLL_lib = (create_TestDLL_lib_fun)library.resolve("create_TestDLL_lib");
        if (create_TestDLL_lib)
        {
            TestDLL_lib *myClassInstance = create_TestDLL_lib();
            if (myClassInstance)
            {
                //qDebug() << QString::number(myClassInstance->getValues());
                qDebug() << QString::number(myClassInstance->a) + " " + QString::number(myClassInstance->b) + " " + QString::number(myClassInstance->c);
            }
        }
        library.unload();
    }
}

现在,我可以访问对象myClassInstance的所有数据值(abc)(如果我在DLL中更改它们,它们也会在程序中更改,而无需重建),但我不能调用myClassInstance->getValues(),因为我得到了

main.obj:-1: error: LNK2001: unresolved external symbol "__declspec(dllimport) public: int __thiscall TestDLL_lib::getValues(void)" (__imp_?getValues@TestDLL_lib@@QAEHXZ)

我该如何解决这个问题?是否可以从导入的类中调用方法?

谢谢。。

不能在运行时导入的类上调用方法。这是因为编译器在编译时而不是在运行时链接这些调用(不能这样做)。我们的好朋友vtable提供了一条出路:

您可以在实现接口的类上调用virtual方法(该接口在运行时不会"导入")。这意味着使用virtual(可能是纯虚拟的)方法定义一个定义接口的类。TestDLL_lib将继承该接口,实现这些方法。您可以通过该接口引用TestDLL_lib实例,并通过该接口调用方法,从而有效地通过接口的vtable调用它们,该接口被TestDLL_lib的vtable"取代"。

别忘了让你的d‘tor成为virtual,并在接口中添加一个virtual dtor。如果不这样做,就无法通过接口指针安全地delete实例。

我还可以解释为什么您可以访问成员,但不能调用"导入"类上的函数。成员由内存位置访问,而内存位置仅由编译器定义。因此,编译器生成访问成员的代码,而不必引用任何类的符号(方法等)。这反过来又导致没有链接依赖性。但是,请注意,如果更改类(例如添加或删除成员),则需要使用DLL重新编译DLL和应用程序,因为这会更改内存布局。

class TestInterface
{
public:
    virtual ~TestInterface()
    {
    }
    virtual int getValues() = 0;
}
class TESTDLL_LIBSHARED_EXPORT TestDLL_lib : public TestInterface
{
public:
    TestDLL_lib();
    virtual ~TestDLL_lib();
    int a;
    int b;
    int c;
    int getValues() override; // MSVC may not support "override"
}; 
// return pointer to interface!
// TestDLL_lib can and should be completely hidden from the application
extern "C" TESTDLL_LIBSHARED_EXPORT TestInterface *create_TestDLL_lib()
{
    return new TestDLL_lib();
}

相关内容

  • 没有找到相关文章

最新更新