Consider a std::map<const char *, MyClass*>.
How do I access a member (variable or function) of the MyClass object pointed to by the map?
// assume MyClass has a string var 'fred' and a method 'ethel'
std::map<const char*, MyClass*> MyMap;
MyMap[ "A" ] = new MyClass;
MyMap.find( "A" )->fred = "I'm a Mertz"; // <--- fails on compile
MyMap.find( "A" )->second->fred = "I'm a Mertz"; // <--- also fails
EDIT -- per Xeo's suggestion
I posted dummy code. Here is the real code.
// VarInfo is meta-data describing various variables, type, case, etc.
std::map<std::string,VarInfo*> g_VarMap; // this is a global
int main( void )
{
// ........ g_VarMap["systemName"] = new VarInfo;
g_VarMap.find( "systemName" ).second->setCase( VarInfo::MIXED, VarInfo::IGNORE );
// .....
}
errors were:
struct std::_Rb_tree_iterator<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, VarInfo*> >’ has no member named ‘second’
Field 'second' could not be resolved Semantic Error make: *** [src/ACT_iod.o] Error 1 C/C++ Problem
Method 'setCase' could not be resolved Semantic Error –
char const*is a very bad key type. You'll only ever access the same value if you pass the exact same string. And I don't mean a literal string like"A", which can have different pointer addresses even for the same content. – Xeo Jun 29 '12 at 14:26std::stringis the correct choice here. Also, what are the exact compiler errors? – Xeo Jun 29 '12 at 14:28map.find(key)->second->member), but reading your last comment, it seems you actually wrotemap.find(key).second->memberin your code. Please provide the actual code you use. – Xeo Jun 29 '12 at 14:37