Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道为什么以下 OQL 查询不只是返回最大数量的返回:
filter(heap.objects(), function(it) { return true; });
事实上,我只返回 1 个随机对象。
这有道理吗?我的堆有 31.000 个对象。
据我所知,上面应该返回所有对象(或返回的限制)。
我的最终目标是能够循环每个对象的字段以检查它是否是浮点数并具有一定的值。
我的人性又一次缩水了很多时间,忘了加上select语句:
select filter(heap.objects(), function(it) { return true; });
希望这会帮助像我一样的人。