有没有一种方法可以处理模板函数的未定义引用错误,而无需在标头中实现它们?
我希望问题已经清楚了。是否有其他方法可以在不在头文件中实现模板函数的情况下避免出现未定义的引用错误?提前致谢。
I hope the problem is clear. Is there an alternative way not to get undefined reference error without implementing template functions in header files? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Marshall Cline 的 C++-FAQ 已处理此问题。
一种方法是使用 export 但我真的不建议使用它,因为并非所有编译器都真正支持它!
事实上,C++0x 委员会已投票否决了下一个 C++ 标准中的导出。
Marshall Cline's C++-FAQ already deals with this.
One way is to use export but I don't really recommend using it because not all compilers support it really!
In fact C++0x Committee has voted out export out of the next C++ Standard.
如果您事先知道需要哪些实例化,则可以手动实例化它们。
If you know in advance which all instantiations you will need, you can instantiate them manually.