Is hash_map part of the STL?

后端 未结 6 1954
一向
一向 2020-11-27 02:54

Quick question...Is hash_map part of the STL?

6条回答
  •  一向
    一向 (楼主)
    2020-11-27 03:52

    The problem is that there is no agreed upon meaning for the term STL. Is hash_map part of Standard C++? No, it isn't. unordered_map will be part of the new C++ standard, however, and is a map implemented using hashing.

提交回复
热议问题