为什么 VC上这个都不行
程序代码:
#include <iostream> #include <vector> #include <list> using namespace std; int main() { vector<int> ivec(10, 3); list<double> ilist(ivec.begin(), ivec.end()); typedef list<double>::const_iterator type; for (type in=ilist.begin(); in!=ilist.end(); ++in) { cout << *in << ' '; } cout << endl; return 0; }