2021年6月17日

Virtual Constructor

摘要: Origin ** Intent: ** To create a copy or new object without knowing its concrete type. ** Implementation** : Exploits overloaded methods with polymorp 阅读全文

posted @ 2021-06-17 10:58 Ultraman_X 阅读(62) 评论(0) 推荐(0) 编辑

CRTP ( The Curiously Recurring Template Pattern)

摘要: CRTP ( The Curiously Recurring Template Pattern) 什么是CRTP 继承自模板类 子类将自己作为模板参数传递给父类 如下: template <typename T> class Base { ... }; class Derived : public 阅读全文

posted @ 2021-06-17 10:51 Ultraman_X 阅读(88) 评论(0) 推荐(0) 编辑

导航