变长参数函数调用变长参数函数

#include <iostream>
template <typename... Args>
inline void my_print(const char* format, Args... rest) {
    printf(format, rest...);
}

int main(int argc, char* argv[]) {
    my_print("my name is:%s, my age is:%d\n", "qiumc", 22);
    return 0;
}
posted @ 2022-05-21 17:23  邱明成  阅读(37)  评论(0编辑  收藏  举报