【HashMap必须理解】Hash table based implementation of the Map interface.

1、sourceCode

Hash table based implementation of the Map interface.

Hash table based implementation of the Map interface. This implementation provides all of the optional map operations, and permits null values and the null key. (The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls.) This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time.

发布了354 篇原创文章 · 获赞 2 · 访问量 2123

猜你喜欢

转载自blog.csdn.net/m0_37681589/article/details/103727748