编写程序由从标准输入设备读入的元素数据建立一个int 型vector 对象,然后
动态创建一个与该vector 对象大小一致的数组,把vector 对象的所有元素复
制给新的数组#include<iostream>
#include<vector>
#include<string>
#include<cstring>
using namespace std;
int main()
{
vector<int> temp;
int ival, count = 0;
while (cin >> ival)
{
count++;
temp.push_back(ival);
}
const int cnt = count;
int *p = new int(cnt);
for (vector<int>::iterator iter = temp.begin(); iter != temp.end(); iter++)
{
cout << *iter;
(*p++ )= (*iter);
cout << *p<< endl;
}
system("pause");
/*cin.get();*/
return 1;
}
请问 其中这句(*p++ )= (*iter);
有错误吗,这个*p++的表达不是可以吗,结果很诡异,如下
1 2 3 4 5 a
1-33686019
2925405549
3-2147426851
4-572719030
5-572662307
请按任意键继续. . .