Java HashMap 与 JSONObject
问题描述
我想知道 Java HashMap 与 JSONObject 的性能.
I am wondering about the performance of Java HashMap vs JSONObject.
似乎 JSONObject 在内部使用 HashMap 存储数据.但与 HashMap 相比,JSONObject 可能会有额外的开销.
It seems JSONObject stores data internally using HashMap. But JSONObject might have additional overhead compared to HashMap.
有人知道Java JSONObject 与HashMap 相比的性能吗?
Does any one know about the performance of Java JSONObject compared to HashMap?
谢谢!
推荐答案
如你所说,JSONObject
由 HashMap
支持.
As you said, JSONObject
is backed by a HashMap
.
因此,性能几乎相同.JSONObject.get()
添加了一个空检查,如果没有找到一个键会抛出一个异常.JSONObject.put()
只是调用 map.put()
.
Because of this, performance will be almost identical. JSONObject.get()
adds a null check, and will throw an exception if a key isn't found. JSONObject.put()
just calls map.put()
.
因此,几乎没有开销.如果您正在处理 JSON 对象,您应该始终使用 JSONObject
而不是 HashMap
.
So, there is almost no overhead. If you are dealing with JSON objects, you should always use JSONObject
over HashMap
.
这篇关于Java HashMap 与 JSONObject的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!