I'm relatively new to C++. In Java, it's easy for me to instantiate and use a hashmap. I'd like to know how do it in a simple way in C++, since I saw many different implementations and none of them looked simple to me.
|
|
Most compilers should define If you want to use your class as the value, not as the key, then you don't need to do anything special. All primitive types (things like Assuming your class is called
You will need to define two functors to wrap those methods in objects.
And instantiate your
Everything should work as expected after that. |
||||
|
|
|
Try boost's unordered classes. |
||
|
|
|
|
Take a look at boost.unordered, and its data structure. |
||
|
|
|
|
Using hashmaps in C++ is easy! It's like using standard C++ map. You can use your's compiler/library implementation of
|
||
|
|
