How do I force a particular instance of a C++ template to instantiate?(如何强制 C++ 模板的特定实例进行实例化?)
问题描述
见标题.我有一个模板.我想强制实例化模板的特定实例.我该怎么做?
See title. I have a template. I want to force a particular instance of a template to instantiate. How do I do this?
更具体地说,您能否强制实例化抽象模板类?
More specifically, can you force an abstract template class to instantiate?
我可能会详细说明,因为我有同样的问题.在我的例子中,我正在构建一个库,一些模板实现很大并且包含很多东西,但只为几种类型生成.我想在库中编译它们并导出所有方法,但不要在任何地方都包含带有代码的头.
I might elaborate as I have the same question. In my case I am building a library, some of the template implementations are large and include lots of stuff, but are only generated for a couple of types. I want to compile them in the library and export all the methods, but not include the header with the code everywhere.
即:
template<class T>
OS_EXPORT_DECL class MyTmpl
{
T *item1;
public:
inline T *simpleGetT() { return(item1); } /* small inline code in here */ }
T *doSomeReallyBigMergeStuff(T *b); // note only declaration here
};
// *** implementation source file only seen inside library
template<class T>
MyTmpl<T>::doSomeReallyBigMergeStuff(T *b)
{
... a really big method, but don't want to duplicate it,
so it is a template ...
}
我当然可以引用库中的所有方法,这将强制它们编译和导出,但我不想将不需要的代码添加到库中,例如项目的参数格式和调用它们的代码等
I could of course reference all the methods inside the library which would force them to compile and export but the desire isn't to add un-needed code to the library like the argument formatting for the items and the code to call them etc.
?????具体来说,我正在为多个版本的 MSC 和 GCC 以及英特尔编译器构建库.
????? specifically I am building the library for several versions of MSC and GCC and intel compilers.
推荐答案
不能强制实例化泛型模板,编译器只能在类型完全已知的情况下生成代码.
You can't force generic templates to instantiate, the compiler can only generate code if the type is completely known.
通过显式提供所有类型来强制实例化:
Forcing an instantiation is done by providing all types explicitly:
template class std::vector<int>;
Comeaus 模板常见问题 详细介绍了相关问题.
Comeaus template FAQ covers the related issues in some detail.
这篇关于如何强制 C++ 模板的特定实例进行实例化?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何强制 C++ 模板的特定实例进行实例化?
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01