源码就这些了 谢谢帮助
#include <stdafx.h>
#include<iostream>
using namespace std;
template <typename T, typename... Args>
ostream &
prout(ostream &os, const T &t, const Args&... rest)
{
os << t;
return prout(os, rest...);
}
int main()
{
int i = 0;
int j = 3;
prout(cout,i,j,34);
cout << endl;
return 0;
}
|