摘要: void Printf(const char* s) { while (*s) { std::cout << *s++; } } template <typename T, typename... Types> void Printf(const char* s, const T& firstArg 阅读全文
posted @ 2021-02-05 13:02 ho966 阅读(130) 评论(0) 推荐(0) 编辑