c++ dll 模板(链接器错误)

发布于 2024-10-18 05:00:43 字数 588 浏览 1 评论 0原文

template <class T>
class PST_OBJECT_RECOGNITION_API test
{
public:
    T t;

    inline bool operator==(const test & other)
    {
        return t == other.t;
    }
};

class PST_OBJECT_RECOGNITION_API test_int
    : public test<int>
{
};

在导入此 DLL 的其他项目中出现此错误

Error   3   error LNK2019: unresolved external symbol "__declspec(dllimport) public: bool __thiscall test<int>::operator==(class test<int> const &)" (__imp_??8?$test@H@@QAE_NABV0@@Z) referenced in function _main main.obj

如何解决此问题?

template <class T>
class PST_OBJECT_RECOGNITION_API test
{
public:
    T t;

    inline bool operator==(const test & other)
    {
        return t == other.t;
    }
};

class PST_OBJECT_RECOGNITION_API test_int
    : public test<int>
{
};

In the other project which imports this DLL I have this error

Error   3   error LNK2019: unresolved external symbol "__declspec(dllimport) public: bool __thiscall test<int>::operator==(class test<int> const &)" (__imp_??8?$test@H@@QAE_NABV0@@Z) referenced in function _main main.obj

How can I solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

盛装女皇 2024-10-25 05:00:43

解决方案似乎是这样的(从模板类中删除 PST_OBJECT_RECOGNITION_API):

template <class T>
class test
{
public:
    T t;

    inline bool operator==(const test<T> & other)
    {
        return true;
    }
};

class PST_OBJECT_RECOGNITION_API test_int
    : public test<int>
{
};

The solution appears to be this (removing PST_OBJECT_RECOGNITION_API from the template class):

template <class T>
class test
{
public:
    T t;

    inline bool operator==(const test<T> & other)
    {
        return true;
    }
};

class PST_OBJECT_RECOGNITION_API test_int
    : public test<int>
{
};
恋竹姑娘 2024-10-25 05:00:43

模板化函数是否在 DLL 的任何位置实例化?

请记住,模板定义是在实例化时生成的,当涉及到类时,编译器会生成类定义(内存布局等),但如果没有显式使用它们,它可能会选择不生成所有方法。

尝试告诉编译器通过 Now 显式实例化该函数,

template bool test<int>::operator==(const test<int> &);

因为它是模板化的并且标记为内联,所以最好将其定义在标头中。

Is the templated function being instantiated anywhere on the DLL?

Remember that template definitions are generated on instantiation, when it comes to classes the compiler generates the class definition(memory layout and such), but it may choose not to generate all the methods if they are not being explicitly used.

Try telling the compiler to explicitly instantiate the function via

template bool test<int>::operator==(const test<int> &);

Now since it is templated and marked inline, it is probably best that it be defined in the header.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文