0

我们在生产中拥有以下代码(大致相同),并且看到了一些奇怪的行为。标记为“此处”的部分始终输出最后插入 accrualRows 字典的内容。如果我们更改 hash_map 以存储指向“行”的指针,那么一切正常。我对在 std 容器中使用 const & 有点怀疑。你不能在标准容器中使用引用,但这些是常量引用,我知道在某些地方会被不同地对待(例如:你可以分配临时变量和常量引用的文字)

#define hash_map std::tr1::unordered_map
//build up a hash map between deal index and the row for ones we care about

    typedef hash_map<int, const Row &> RowMap;
    RowMap accrualRows;    
    for( int i = 0; i < listItems.numResults(); ++i )
    {
        const Row & accrual = listItems.getResult(i);
        if( accrual.someVar )
        {
            accrualRows.insert( std::make_pair( accrual.index, accrual ) );
         }
    }

    //go through every row and if deal index is in our accrualRows, then
    //modify 

    for( int i = 0; i < numResults(); ++i )
    {
        ExposureRow & exposure = getResult(i);
        RowMap::const_iterator it = accrualRows.find( exposure.index );

        if( it != accrualRows.end() )
        {
            // HERE
            cout << it->second.someVar << endl;
        }
    }
}

任何人都可以看到问题是什么?

4

1 回答 1

1

您不能将引用存储在容器中。一个容器只能存储对象。如果您需要存储“引用”,您可以使用std::reference_wrapper或使用指针。

于 2012-07-19T07:01:25.260 回答