乱世@小熊 2009-01-30 10:06 采纳率: 25%
浏览 777
已采纳

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

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条回答 默认 最新

  • Memor.の 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 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 关于#python#的问题:自动化测试