日期:2014-05-17 浏览次数:20785 次
vector<int>& fun1(int num) { vector<int> values; for(int j=0;j<num;j++) { values.push_back(j); } return values; }