reading object from const unordered_map

后端 未结 2 1377
南笙
南笙 2021-01-07 17:21

Why am I not allowed to read an object from a constant unordered_map?

const unordered_map z;
int val = z[5]; // compile error
2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-07 17:51

    The expression z[5] calls a non-const member function of the map.

    This is because a map's operator[] will insert a new element if the key isn't found, so obviously it has to be non-const.

    For a vector nothing is inserted by operator[], the element must exist already (or you get undefined behaviour, so the equivalent code would access the 6th element of an empty vector, which is not fine!).

    To lookup a key without adding it use:

    int val = 0;
    auto it = z.find(5);
    if (it != z.end())
      val = it->second;
    

提交回复
热议问题