我想知道这段代码是否会实际存储一个指向由地图管理的对象的指针:std::map<std::string,MapType> map; MapType* typePointer; typePointer = map[someKey]; 最佳答案 typePointer = &map[someKey];