I need a key in the map, however, I found it should be multiple data. Can I put these data in one user defined class and put the whole class as a key in the map?
Will it impact the time efficiency?
What other concerns should be applied here?
|
|
|
Any type can be used as a key as long as it is
If your class is just a simple structure, then it's already copyable and assignable. For a class to be comparable, you must either implement The only impact on time efficiency comes from larger objects taking longer to copy and compare. If the objects need to be that size, then there's nothing you can do about that, so don't worry about it. |
|||||
|
|
As long as that class has an Edit: added the extra bit that |
|||||||||
|
|
Yes, you can use any class as the key as long as it implements the less-than operator< or you give a comparison trait in the map definition. Don't worry about the time unless it proves to be a problem in practice. |
|||
|
|
|
Regarding using user defined classes for keys, sure. Because of the way Map is defined, your must define a 'less than' operator (operator<) for your class, or give a comparator object when constructing the map. Here's an example of the latter. Regarding efficiency, don't worry prematurely, but one concern is how costly it is to make copies of the key object. This is not about efficiency, but avoid altering the content of the keys in way that would affect the result of operator< while they're in the map. If you're interested in efficient indexing with the different components of the key (since you say it is 'multiple data', look at boost::multi_index. |
|||
|
|
|
A type to be used as a map's key type either needs to have a
|
||||
|
|