“undefined reference to”c++ template

You need to use theexportkeyword. However, I don't think G++ has proper support, so you need to include the template function's definition in the header so the translation unit can use it. This is because the<int>'version' of the template hasn't been created, only the<typename T>'version.'

An easy way is to#includethe .cpp file. However, this can cause problems, e.g. when other functions are in the .cpp file. It will also likely increase the compile time.

A clean way is to move your template functions into its own .cpp file, and include that in the headeroruse theexportkeyword and compile it separately.

c++中template不支持声明和实现分别放在不同的文件中。可以通过include cpp文件解决这个问题。

原文链接: https://www.cnblogs.com/xuqiang/archive/2010/11/27/1953377.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/17939

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月7日 下午6:39
下一篇 2023年2月7日 下午6:39

相关推荐