I would like to put use a string* as a key in an unordered_list. I do not want the hash the pointer itself but the string it points to.
I understand I need to create a struct like this:
struct myhash{
size_t operator()(const string * str){
return hash(*str);
}
}
and send it as a a hasher to the map template, but i am not sure how.
string*and not astring? If you use astring, then theunordered_listwill correctly handle thestring's lifetime. If you use astring*, then you will have to handle the lifetime. Make sure you really get something out of accepting that task (lifetime management). – Max Lybbert Jul 26 '10 at 8:55Maxsaid: you have to manage those lifetimes manually, which is bad. (So this is okay as long as the pointers are non-owning.) If they are owning, useshared_ptrorunique_ptr. – GManNickG Jul 26 '10 at 9:01