码迷,mamicode.com
首页 > 其他好文 > 详细

STL_map.修改删除

时间:2018-07-16 14:05:14      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:string   ase   val   ring   std   两种   amp   iterator   map   

1、修改示例

int TdrSvgAttr::AttrSet_mem(bool _bAttrInStyle, string &_strAttrName, string& _strAttrValue)
{
    map<string, string> *pMap = NULL;
    if (_bAttrInStyle)
        pMap = &FmapStyle;
    else
        pMap = &FmapNormal;

    if (pMap != NULL)
    {
        map<string, string>::iterator it = pMap->find(_strAttrName);
        if (it == pMap->end())
            pMap->insert(std::make_pair(_strAttrName, _strAttrValue));
        else
        {
            // ZC: 两种修改 value的方式
            it->second = _strAttrValue;
            //FmapStyle[_strAttrName] = _strAttrValue;
        }
    }

    return 0;
}

 

2、删除示例

int TdrSvgAttr::AttrRemove_mem(bool _bAttrInStyle, string &_strAttrName)
{
    map<string, string> *pMap = NULL;
    if (_bAttrInStyle)
        pMap = &FmapStyle;
    else
        pMap = &FmapNormal;

    if (pMap != NULL)
    {
        map<string, string>::iterator it = pMap->find(_strAttrName);
        pMap->erase(it);
    }
    return 0;
}

 

3、

4、

5、

 

STL_map.修改删除

标签:string   ase   val   ring   std   两种   amp   iterator   map   

原文地址:https://www.cnblogs.com/cppskill/p/9317088.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!