gpt4 book ai didi

haxe - 如何获取 map 的大小?

转载 作者:行者123 更新时间:2023-12-04 12:46:19 24 4
gpt4 key购买 nike

是否可以获取 map 长度/大小?出于某种原因,我需要知道 map 的大小以进行调试。

我似乎不能做这样的事情:

map = new Map<Int, MyObject>();
map.set(.., ..);
map.set(.., ..);
map.length // should be 2

我希望这是可能的。如果不是,为什么?

最佳答案

您可以使用 Lambda.count(map) .

但是要知道这将遍历所有值并且可能很昂贵。

至于为什么没有length接口(interface)中的属性:

Map implementation is rarely length-based so it's hard to know the length unless you maintain an additional counter for it, which in most of the cases is not useful.



Issue #1663: Size of *Map and other Data Structures (comment)

关于haxe - 如何获取 map 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46812636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com