S swimlikehell macrumors member Original poster Aug 31, 2006 46 0 Oct 27, 2006 #1 I m trying to insert into a map set up like <string, uint16> if anyone could let me know what i need to do to put information into this it would be much appreciated. thanks
I m trying to insert into a map set up like <string, uint16> if anyone could let me know what i need to do to put information into this it would be much appreciated. thanks
robbieduncan Moderator emeritus Jul 24, 2002 25,611 893 Harrogate Oct 27, 2006 #2 What language are you using? What Frameworks/APIs? POST YOUR CODE
SamMiller0 macrumors member Aug 17, 2004 66 0 San Jose, CA Oct 27, 2006 #3 The easiest method is probably: Code: typedef std::map<std::string, uint16_t> HashTable; HashTable foo; foo.insert(HashTable::value_type("hello world", 42));
The easiest method is probably: Code: typedef std::map<std::string, uint16_t> HashTable; HashTable foo; foo.insert(HashTable::value_type("hello world", 42));
iSee macrumors 68040 Oct 25, 2004 3,545 304 Oct 27, 2006 #4 easiest method: Code: std::map<std::string, uint16_t> myMap; myMap["the key"] = 77; just accessing the map with the square bracket operator will insert a value
easiest method: Code: std::map<std::string, uint16_t> myMap; myMap["the key"] = 77; just accessing the map with the square bracket operator will insert a value