【发布时间】:2011-12-28 16:09:33
【问题描述】:
typedef std::map<std::string,int> string2intMap;
typedef string2intMap arrOfMaps[3] ;
//map : string --> array of maps of <std::string,int>
std::map<std::string,arrOfMaps> tryingStuff;
//map : string --> int
string2intMap s;
s["key"]= 100;
tryingStuff["hello"][0] = s;
上面的代码无法编译,有问题的一行是: TryStuff[“你好”][0] = s;
这是编译器的呼喊:
c:\program files (x86)\microsoft visual studio 10.0\vc\include\map(215): error C2440: '<function-style-cast>' : cannot convert from 'int' to 'std::map<_Kty,_Ty> [3]'
2> with
2> [
2> _Kty=std::string,
2> _Ty=int
2> ]
2> There are no conversions to array types, although there are conversions to references or pointers to arrays
2> c:\program files (x86)\microsoft visual studio 10.0\vc\include\map(210) : while compiling class template member function 'std::map<_Kty,_Ty> (&std::map<_Kty,arrOfMaps>::operator [](const std::basic_string<_Elem,_Traits,_Ax> &))[3]'
2> with
2> [
2> _Kty=std::string,
2> _Ty=int,
2> _Elem=char,
2> _Traits=std::char_traits<char>,
2> _Ax=std::allocator<char>
2> ]
2> c:\work\toot\tootcode\tootim\tools\doobim\doobim.cpp(95) : see reference to class template instantiation 'std::map<_Kty,_Ty>' being compiled
2> with
2> [
2> _Kty=std::string,
2> _Ty=arrOfMaps
2> ]
2>
2>Build FAILED.
2>
2>Time Elapsed 00:00:01.38
========== Build: 1 succeeded, 1 failed, 5 up-to-date, 0 skipped ==========
知道如何让它工作吗? (我不想改变数据结构 map : string --> 地图数组 )
【问题讨论】:
标签: c++ arrays visual-c++ typedef