乱世@小熊 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条)

报告相同问题?

悬赏问题

  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮