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.
请帮我。我在 VisualVM 中分析我的堆转储。
如何获取 value == "0" 的所有字符串的数量?我有以下查询:
select count(s) from java.lang.String s where s.toString().equals("0");
但它不起作用。我想接收具有“0”值的所有字符串的数量,以及它们在内存中的大小是否可能。
这解决了我的问题
select count(heap.objects('java.lang.String'), "it.toString().equals('0')")