动态模板

#include <vector>
#include <algorithm>
#include <iostream>
#include <bitset>
using namespace std;

void print()
{}

template <typename T, typename... Types>
void print(const T& firstArg, const Types&... args)
{
    cout << firstArg << endl;
    print(args...);
}

int main()
{
    print(7.5, "hello", bitset<16>(377), 42);
    return 0;
}
原文地址:https://www.cnblogs.com/zzyoucan/p/13695789.html