摘要:
【EOSIO/appbase】 AppBase是EOSIO开源一个plugins架构程序框架,被应用于 EOS nodeos中。AppBase manages the plugin life-cycle and ensures that all plugins are configured, ini 阅读全文
摘要:
【unique_ptr】 unique_ptr 不共享它的指针。它无法复制到其他 unique_ptr,无法通过值传递到函数,也无法用于需要副本的任何标准模板库 (STL) 算法。只能移动unique_ptr。这意味着,内存资源所有权将转移到另一 unique_ptr,并且原始 unique_ptr 阅读全文
摘要:
【program_options】 The program_options library allows program developers to obtain program options, that is (name, value) pairs from the user, via conv 阅读全文
摘要:
【全特化与偏特化】 1、普通类模板 2、全特化。 3、偏特化。 4、函数模板只能全特化,不能偏特化。 5、一个示例。 阅读全文