为什么模板定义在.h中

发布于 2024-10-31 10:29:33 字数 564 浏览 1 评论 0原文

可能的重复:
为什么应该模板类的实现和声明应该在同一个头文件中吗?
为什么模板只能在头文件中实现?< /a>

我不太明白为什么必须在 .h 文件中定义模板实现?

有人可以给我详细的答案吗?

谢谢!

Possible Duplicates:
Why should the implementation and the declaration of a template class be in the same header file?
Why can templates only be implemented in the header file?

I'm not really understand why it's olbiged to define template implementation in a .h file?

Could someone give me a detail answer ?

Thanks!

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

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

发布评论

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

评论(1

秋千易 2024-11-07 10:29:33

因为编译器需要代码来实例化模板。如果将模板实现放入 .cpp 文件中,则只能在该 .cpp 文件中实例化该模板。

Because the compiler needs the code to instantiate the template. If you put a template implementation into a .cpp file, you will be only able to instantiate the template in that .cpp file.

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