龙羽 发表于 2013-11-10 17:41:05

for循环与迭代器

for(int a=10,vector<string *>::iterator i=v.begin();i!=v.end();++i)
           {
                  
                   cout<<""<<endl;
           }
这句报错.........因为前面的int a=10,这样写不可以吗?
for(int a=10,double b=11.1;a<100;++a)//这样完全可以的啊 ,难道和迭代器一起用就不行吗?

页: [1]
查看完整版本: for循环与迭代器