我遇到了ZeroC ICE字典语法的新手问题。这是我尝试过的,似乎没什么用。
/*What I want to make <flightNo, <hr, month day>>*/
dictionary<int, <short, short>> FlightSchedule;
dictionary<int, dictionary<short, short>> FlightSchedule;
我应该如何编写它以使用语法?
答案 0 :(得分:1)
我找到了解决方案。
dictionary<short, short> Time;
dictionary<int, Time> FlightSchedule
我想知道是否还有其他解决方案,因为上面的IMO语法等于:
dictionary<int, dictionary<short, short>> FS;