设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 581|回复: 2
打印 上一主题 下一主题

简单C++错误求助

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 03:20:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include<iostream>
#include<vector>
using namespace std;
int main()
{
vector<int> b;
vector<int> f(9,9);
  for(vector<int>::iterator x=f.begin();x!=f.end();++x)
    b.push_back(f[*x]);
cout<<b<<endl;
return 0;
}



F:\VC6.0++\Microsoft Visual Studio\Common\MSDev98\Bin\7.cpp(10) : error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'class std::vector<int,class std::allocator<int> >' (or there is no acceptable conversion)
执行 cl.exe 时出错.
2#
发表于 2009-11-3 03:20:30 | 只看该作者
b是vector不能这么输出吧?
应该再用一个迭代器之类吧
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 03:20:31 | 只看该作者
#include<iostream>
#include<vector>
using namespace std;
int main()
{
    vector<int> b;
    vector<int> f(9,9);
    for(vector<int>::iterator x=f.begin();x!=f.end();++x)
    b.push_back(f[*x]);
    for(vector<int>::iterator v=b.begin();v!=b.end();++v)
        cout<<*v;
    return 0;
}

为什么结果不是vector类型f复制给了vector类型b的?
最后结果怎么不对,求助...
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 10:43 , Processed in 0.106185 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表