本文介绍了动态从DLL中导入C ++类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从DLL导入C ++类的正确方法是什么?我们使用Visual C ++。

What is the correct way to import a C++ class from a DLL? We're using Visual C++.

有dllexport / exports.def + LoadLibrary + GetProcAddress trifecta,但它不适用于C ++类,只有C函数。这是由于C ++名称mangling吗?如何使此工作?

There's the dllexport/exports.def+LoadLibrary+GetProcAddress trifecta, but it doesn't work on C++ classes, only C functions. Is this due to C++ name-mangling? How do I make this work?

推荐答案

感谢您的努力家伙&女孩

Thanks for your efforts guys & girls

这篇关于动态从DLL中导入C ++类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 13:16