C ++中map []和map.at之间的区别? [英] Difference between map[] and map.at in C++?

查看:1394
本文介绍了C ++中map []和map.at之间的区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通过 aMap [key] aMap.at(key)获取值有何区别? C ++?

What is the difference in getting a value through aMap[key] and aMap.at(key) in C++?

推荐答案

在C ++ 11中 map :: at exists (谁知道?)。

In C++11 map::at exists (who knew?).

如果键不存在则抛出异常, find 返回 aMap.end()如果元素不存在, operator [] value-initializes 如果没有值,则为相应键的新值。

It throws an exception if the key doesn't exist, find returns aMap.end() if the element doesn't exist, and operator[] value-initializes a new value for the corresponding key if no value exists there.

这篇关于C ++中map []和map.at之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆