Is there a way to specify the default value std::map 's operator[] returns when an key does not exist?
Thanks!
|
|
|
No, there isn't. The simplest solution is to write your own free template function to do this. Something like:
|
|||||||||||||||||||
|
|
The C++ standard (23.3.1.2) specifies that the newly inserted value is default constructed, so
|
|||||
|
|
There is no way to specify the default value - it is always value constructed by the default (zero parameter constructor). In fact |
|||||
|
|
|||
|
|
|
Maybe you can give a custom allocator who allocate with a default value you want.
|
|||||||||||||||||
|