动态模板
#include#include #include #include using namespace std; void print() {} template 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; }