0

我在以下代码中将 3 个元素(开始、停止)链接在一起时遇到问题。

 map <int, int> (start, stop) startomap;
 map <unsigned, <int, int> > (n1, startomap);
 map <string, unsigned> (s, n1) m3;

从 m3 我能够链接 string 和 n1,我如何设置 map < string, > (s, startomap) m4;同时确保 s -> n-> start->to 之间的 1 对 1 关系 非常感谢!

4

1 回答 1

1

你想要这个吗?

map <int, int>  startomap;
map<unsigned, map<int, int> > n1startomap;
map <string, map<unsigned, map<int, int> > > sn1startmap;
于 2013-01-07T05:24:06.273 回答