How do I export templated classes from a dll without explicit specification?(如何在没有明确规范的情况下从 dll 导出模板化类?)
问题描述
我有一个包含模板化类的 dll.有没有办法在没有明确说明的情况下导出它?
I have a dll that contains a templated class. Is there a way to export it without explicit specification?
推荐答案
由于模板的代码通常在标题中,因此您根本不需要导出函数.即使用dll的库可以实例化模板.
Since the code for templates is usually in headers, you don't need to export the functions at all. That is, the library that is using the dll can instantiate the template.
这是让用户可以自由地在模板中使用任何类型的唯一方法,但从某种意义上说,它与 dll 的工作方式背道而驰.
This is the only way to give users the freedom to use any type with the template, but in a sense it's working against the way dlls are supposed to work.
这篇关于如何在没有明确规范的情况下从 dll 导出模板化类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在没有明确规范的情况下从 dll 导出模板化类?
- STL 中有 dereference_iterator 吗? 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- C++ 协变模板 2021-01-01
- 从python回调到c++的选项 2022-11-16
- Stroustrup 的 Simple_window.h 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 使用/clr 时出现 LNK2022 错误 2022-01-01