为了账号安全,请及时绑定邮箱和手机立即绑定

什么是奇怪的重复模板模式(CRTP)?

什么是奇怪的重复模板模式(CRTP)?

C++ C
慕的地6264312 2019-06-12 15:04:31
什么是奇怪的重复模板模式(CRTP)?没有参考一本书,谁能给出一个很好的解释CRTP用一个代码示例?
查看完整描述

3 回答

?
米脂

TA贡献1836条经验 获得超3个赞

这里你可以看到一个很好的例子。如果使用虚拟方法,程序将知道运行时执行的是什么。实现CRTP编译器是在编译时决定的!这是一场精彩的表演!

template <class T>class Writer{
  public:
    Writer()  { }
    ~Writer()  { }

    void write(const char* str) const
    {
      static_cast<const T*>(this)->writeImpl(str); //here the magic is!!!
    }};class FileWriter : public Writer<FileWriter>{
  public:
    FileWriter(FILE* aFile) { mFile = aFile; }
    ~FileWriter() { fclose(mFile); }

    //here comes the implementation of the write method on the subclass
    void writeImpl(const char* str) const
    {
       fprintf(mFile, "%s\n", str);
    }

  private:
    FILE* mFile;};class ConsoleWriter : public Writer<ConsoleWriter>{
  public:
    ConsoleWriter() { }
    ~ConsoleWriter() { }

    void writeImpl(const char* str) const
    {
      printf("%s\n", str);
    }};


查看完整回答
反对 回复 2019-06-12
  • 3 回答
  • 0 关注
  • 571 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信