From what I understand, the key in a value pair in an std::map cannot be changed once inserted. Does this mean that creating a map with the key template argument as const has no effect?
std::map<int, int> map1;
std::map<const int, int> map2;
|
|
|
|
|
|
|
The answer to your title question is yes. There is a difference. You cannot pass a However, the functional behavior of the maps is identical, even though they're different types. This is not unusual. In many contexts, int and long behave the same, even though they're formally different types. |
||||
|
|
|
since int is copied by value this declaration of const has no sense. On other hand
dramatically changes a picture |
||||||
|
|
|
|
||
|
|
|
|
As Dewfy said, with the example you gave, it doesn't matter since int is a built in type and it will be copied by value, but with char* it's a little different... If you had
Then you can't insert a variable declared as const char* will fail
with a
you can actually say
with a
you'll be restricted to using
|
||||
|