When I should use std::map::at to retrieve map element
I have read different articles on web and questions at stackoverflow, but for me it is not clear is there any exclusive case when it is better to use std::map::at
to retrieve map element.
According to definition, std::map::at
Returns a reference to the mapped value of the element identified with key k.
If k does not match the key of any element in the container, the function throws an out_of_range exception.
For me only case when it is worth to use std::map::at
when you 100% sure that element with particular key exist, otherwise you should consider exception handling.
- Is there any case where
std::map::at
considered as most efficient and elegant way to do? In what cases you will recommend to usestd::map::at
? - Am I right that it is better to use
map::find()
when there is a possibility to not have element with such a key? Andmap::find()
it is faster and more elegant approach?
if ( map.find("key") != map.end() ) { // found } else { // not found }
p.s
map::operator[]
sometimes can be dangerous, because if an element doesn't exist then it will inserts it.
EDITED: links somehow related link 1 link 2 link 3 link 4 link 5 link 6
Solution 1:
Contrary to most existing answers here, note that there are actually 4 methods related to finding an element in a map (ignoring lower_bound
, upper_bound
and equal_range
, which are less precise):
-
operator[]
only exist in non-const version, as noted it will create the element if it does not exist -
at()
, introduced in C++11, returns a reference to the element if it exists and throws an exception otherwise -
find()
returns an iterator to the element if it exists or an iterator tomap::end()
if it does not -
count()
returns the number of such elements, in amap
, this is 0 or 1
Now that the semantics are clear, let us review when to use which:
- if you only wish to know whether an element is present in the
map
(or not), then usecount()
. - if you wish to access the element, and it shall be in the
map
, then useat()
. - if you wish to access the element, and do not know whether it is in the
map
or not, then usefind()
; do not forget to check that the resulting iterator is not equal to the result ofend()
. - finally, if you wish to access the element if it exists or create it (and access it) if it does not, use
operator[]
; if you do not wish to call the type default constructor to create it, then use eitherinsert
oremplace
appropriately
Solution 2:
std::map::at()
throws an out_of_range
exception if the element could not be found. This exception is a kind of logic_error
exception which for me is a kind of synonym of assert()
from the usage standpoint: it should be used to report errors in the internal logic of the program, like violation of logical preconditions or class invariants.
Also, you can use at()
to access const maps.
So, for your questions:
- I will recommend using
at()
instead of[]
when accessing const maps and when element absence is a logic error. - Yes, it's better to use
map::find()
when you're not sure element is here: in this case it's not a logic error and so throwing and catchingstd::logic_error
exception will not be very elegant way of programming, even if we don't think about performance.
Solution 3:
As you noted, there are three different ways to access elements in a map: at()
, operator[]
and find()
(there are also upper_bound
, lower_bound
and equal_range
, but those are for more complicated circumstances where you might want to find a next/previous element etc.)
So, when should you use which one?
operator[]
is basically "if it does not exist, create one with a default-constructed mapped element". That means it won't throw (except in the corner cases when the memory allocation throws or one of the key or value constructors throw), and you definitely get a reference to the element you looked for - either the existing one or the newly created.
at()
throws if there is no element for that key. Since you should not use exceptions for normal program flow, using at()
is saying "I am sure there is such an element." But with the added benefit that you get an exception (and not undefined behavior) if you are wrong. Don't use this if you are not positive that the element exists.
find()
says "there may or may not be such an element, let's see..." and offers you the possibility to react to both cases differently. It therefore is the more general approach.