嵌套字典语法ICE C ++

时间:2014-06-25 18:55:08

标签: c++ dictionary syntax map ice

我遇到了ZeroC ICE字典语法的新手问题。这是我尝试过的,似乎没什么用。

/*What I want to make <flightNo, <hr, month day>>*/
dictionary<int, <short, short>> FlightSchedule;
dictionary<int, dictionary<short, short>> FlightSchedule;

我应该如何编写它以使用语法?

1 个答案:

答案 0 :(得分:1)

我找到了解决方案。

dictionary<short, short> Time;
dictionary<int, Time> FlightSchedule

我想知道是否还有其他解决方案,因为上面的IMO语法等于:

dictionary<int, dictionary<short, short>> FS;