我有一個std ::地圖,一個結構映射到一個字符串: struct st
{
std::string name;
int age;
}
std::map<st, std::string> m_SoundStructList;
現在我想在地圖上查找基於一個字符串,名稱和結構。 std::string lName="Kate"
auto iter = m_SoundSt
在我的應用程序中,我將C++ std map與char *作爲關鍵字。以下是使用迭代器從映射擦除數據輸入的代碼示例。 // map declaration in the code
map<VcmU8T*, time_t, DataMapStrCmpT> mDataMap;
auto it = mDataMap.find(apKey);
if (it != mDataMap.end()) {