gpt4 book ai didi

c++ - 通过 const std::map 搜索

转载 作者:行者123 更新时间:2023-11-27 22:59:45 25 4
gpt4 key购买 nike

我正在上一门课,我遇到了一个绊脚石。我会给你一个我的源代码示例,只是类名、方法名和变量名不同,但实现是相同的。您会在相应函数的代码块中看到我的问题、疑问和关注点。

我的类.h

#ifndef MY_CLASS_H
#define MY_CLASS_H

const std::string strOne = std::string( "one" );
const std::string strTwo = std::string( "two" );
const std::string strThree = std::string( "three" );
const std::string strUnknown = std::string( "unknown" );

enum Count {
ONE,
TWO,
THREE,
UNKNOWN
};

class MyClass {
private:
const std::map<Count, const std::string> m_mCount = createCountMap();
unsigned short m_uCount;
std::vector<std::string> m_vItems;
std::multimap<const std::string, const std::string> m_mmAssociatedItems;

public:
MyClass();
MyClass( const std::string strItem1, const std::string strItem2 );

static MyClass* get();

void addItem( Count type, const std::string& strItem2 );
void addItem( const std::string& strItem1, const std::string& strItem2 );

private:
static const std::map<Count, const std::string> createCountMap();

};

#endif // MY_CLASS_H

我的类.cpp

#include "stdafx.h"
#include "MyClass.h"

static MyClass* s_pMyClass = nullptr;

const std::map<Count, const std::string> MyClass:createCountMap() {
std::map<Count, const std::string> m;
m.insert( std::make_pair( Count::ONE, strOne ) );
m.insert( std::make_pair( Count::TWO, strTwo ) );
m.insert( std::make_pair( Count::Three, strThree ) );
m.insert( std::make_pair( Count::UNKNOWN, strUnknown ) );
return m;
} // createCountMap

MyClass* MyClass::get() {
if ( !s_pMyClass ) {
return nullptr;
}
return s_pMyClass;
} // get

MyClass::MyClass() : m_uCount( 0 ) {
m_vItems.clear();
m_mmAssociatedItems.clear();
} // MyClass

MyClass::MyClass( const std::string& strItem1, const std::string& strItem2 ) :
m_uCount( 0 ) {
addItem( strItem1, strItem2 );
} // MyClass

void MyClass::addItem( Count type, const std::string& strItem2 ) {
const std::map<Count, const std::string>::const_iterator it = m_mCount.find( type );
if ( it == m_mCount.end() ) {
// Did not find a valid item key!
// Throw Exception Here!
}
m_vItems.push_back( strItem2 );
m_mmAssociatedItems.insert( std::make_pair( it->second, m_vItems.at( m_uCount ) ) );
++m_uCount;
}

void MyClass::addItem( const std::string& strItem1, const std::string& strItem2 ) {
// I need to do a similar thing as above instead of looking through my
// const std::map at the key values for a match, with this overloaded
// function call I need to use strItem1 as the search item to see if it
// is within the contents of this map which would be the map's ->second
// value. If not throw a similar error as above otherwise once it is
// found populate my vector and multimap same as above and increment
// my count variable.

// This would logically be my next step
const std::map<Count, const std::string>::const_iterator it = m_mCount.begin();

// It Is Within This For Loop That It Fails To Compile! It
// Fails At The it++ Part! Is There A Way Around This? Or
// Am I Missing Something Simple?
for ( ; it != m_mCount.end(); it++ ) {
// If strItem1 == it->second && it != m_mCount.end()
// found it, add items, if not throw error

}

m_vItems.push_back( strItem2 );
m_mmAssociatedItems.insert( std::make_pair( strItem1, strItem2 ) );
++m_uCount;
}

在我的源代码中,第二个功能比第一个功能更重要!非常感谢任何帮助或建议。

最佳答案

const std::map<Count, const std::string>::const_iterator it = m_mCount.begin();

应该删除第一个 const。否则无法向前移动,也无法遍历 m_mCount

关于c++ - 通过 const std::map 搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29104827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com