C++ 变参模板

#include 

void xprintf(){}
template 
void xprintf(T value, Targs... Fargs)
{
    std::cout << sizeof...(Fargs) << " " << value << std::endl;
    xprintf(Fargs...);
}

int main()
{
    xprintf("小明个人信息:", "小明", "男", 35, "程序员", 169.5);
    return 0;
}

你可能感兴趣的:(c++)