摘要: #include <iostream> template <typename... Args> inline void my_print(const char* format, Args... rest) { printf(format, rest...); } int main(int argc, 阅读全文
posted @ 2022-05-21 17:23 邱明成 阅读(37) 评论(0) 推荐(0) 编辑