摘要: C++11/14特性系列 1. variadic templates (可变参数模板) // 需要处理最后一个无参的情况 void print( ){ } template <typename... Types> void print(const Types&... args){ print("ss 阅读全文
posted @ 2022-11-16 11:03 DL1024 阅读(42) 评论(0) 推荐(0)