斗士狗 2009-01-30 10:06 采纳率: 0%
浏览 453
已采纳

为什么模板只能在头文件中实现?

Quote from The C++ standard library: a tutorial and handbook:

The only portable way of using templates at the moment is to implement them in header files by using inline functions.

Why is this?

(Clarification: header files are not the only portable solution. But they are the most convenient portable solution.)

转载于:https://stackoverflow.com/questions/495021/why-can-templates-only-be-implemented-in-the-header-file

  • 写回答

14条回答 默认 最新

  • 喵-见缝插针 2009-01-30 10:26
    关注

    It is not necessary to put the implementation in the header file, see the alternative solution at the end of this answer.

    Anyway, the reason your code is failing is that, when instantiating a template, the compiler creates a new class with the given template argument. For example:

    template<typename T>
    struct Foo
    {
        T bar;
        void doSomething(T param) {/* do stuff using T */}
    };
    
    // somewhere in a .cpp
    Foo<int> f; 
    

    When reading this line, the compiler will create a new class (let's call it FooInt), which is equivalent to the following:

    struct FooInt
    {
        int bar;
        void doSomething(int param) {/* do stuff using int */}
    }
    

    Consequently, the compiler needs to have access to the implementation of the methods, to instantiate them with the template argument (in this case int). If these implementations were not in the header, they wouldn't be accessible, and therefore the compiler wouldn't be able to instantiate the template.

    A common solution to this is to write the template declaration in a header file, then implement the class in an implementation file (for example .tpp), and include this implementation file at the end of the header.

    // Foo.h
    template <typename T>
    struct Foo
    {
        void doSomething(T param);
    };
    
    #include "Foo.tpp"
    
    // Foo.tpp
    template <typename T>
    void Foo<T>::doSomething(T param)
    {
        //implementation
    }
    

    This way, implementation is still separated from declaration, but is accessible to the compiler.

    Another solution is to keep the implementation separated, and explicitly instantiate all the template instances you'll need:

    // Foo.h
    
    // no implementation
    template <typename T> struct Foo { ... };
    
    //----------------------------------------    
    // Foo.cpp
    
    // implementation of Foo's methods
    
    // explicit instantiations
    template class Foo<int>;
    template class Foo<float>;
    // You will only be able to use Foo with int or float
    

    If my explanation isn't clear enough, you can have a look at the C++ Super-FAQ on this subject.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(13条)

报告相同问题?

悬赏问题

  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码
  • ¥50 随机森林与房贷信用风险模型
  • ¥50 buildozer打包kivy app失败
  • ¥30 在vs2022里运行python代码
  • ¥15 不同尺寸货物如何寻找合适的包装箱型谱
  • ¥15 求解 yolo算法问题