从多级unordered_map中删除元素?

时间:2011-07-22 05:10:44

标签: c++ boost erase unordered-map

我有以下代码,我希望消除我使用值10初始化创建的元素。我无法设置迭代器并删除它。怎么做?

#include <iostream>
#include <boost/unordered_map.hpp>

using namespace std;

int main()
{
    typedef boost::unordered_map<int, boost::unordered_map<int, boost::unordered_map<int, int> > >::const map_it;
    typedef boost::unordered_map<int, boost::unordered_map<int, boost::unordered_map<int, int> > > _map;
    _map _3d;

    _3d[0][0][0] = 10;

    cout<<_3d[0][0][0]<<endl;

    map_it = _3d[0][0][0].begin();

    _3d[0][0][0].erase(map_it);

    return 0;
}



multimapBoost.cpp||In function 'int main()':|
multimapBoost.cpp|16|error: expected unqualified-id before '=' token|
multimapBoost.cpp|18|error: request for member 'erase' in '((boost::unordered_map<int, int, boost::hash<int>, std::equal_to<int>, std::allocator<std::pair<const int, int> > >*)((boost::unordered_map<int, boost::unordered_map<int, int, boost::hash<int>, std::equal_to<int>, std::allocator<std::pair<const int, int> > >, boost::hash<int>, std::equal_to<int>, std::allocator<std::pair<const int, boost::unordered_map<int, int, boost::hash<int>, std::equal_to<int>, std::allocator<std::pair<const int, int> > > > > >*)_3d.boost::unorder|
multimapBoost.cpp|18|error: expected primary-expression before ')' token|
||=== Build finished: 3 errors, 0 warnings ===|

1 个答案:

答案 0 :(得分:3)

你有太多[0]

_3d[0][0][0].begin(); 
// should be:
_3d[0][0].begin();

此外,map_it类型,而不是变量;你需要声明一个map_it类型的变量并分配或初始化该变量。

_3d[0][0].begin()的类型只是boost::unordered_map<int, int>::iterator(或const_iterator); _3d.begin()的类型将是您似乎尝试使用的嵌套迭代器类型。

一些额外的typedef会使这段代码变得非常直接。