golang中怎么删除map中所有元素
2 回答
富国沪深
TA贡献1790条经验 获得超9个赞
std::map<LONG,CBlinkPCHandle*>::iterator it;
for( it = m_mapUserLoginGUID.begin(); it != m_mapUserLoginGUID.end(); it ++)
{
if(it->second != NULL)
{
it->second->RemoveAll();
delete it->second;
}
m_mapUserLoginGUID.erase(it);
}
调用RemoveAll()删除所有元素
- 2 回答
- 0 关注
- 1143 浏览
添加回答
举报
0/150
提交
取消