Home > Java > Javagetting Started > body text

The difference between java collections

(*-*)浩
Release: 2019-11-13 11:57:32
Original
3749 people have browsed it

The difference between java collections

The difference between sets:

The difference between List, Set, and Map (Recommended learning: java course)

List allows to store duplicate objects. If it is ordered, multiple null elements can be inserted.

Set does not allow duplicate objects. If it is unordered, only one null element is allowed.

Map stores data in key-value pairs. The key is unique and can have the same value.

The difference between ArrayList, LinkedList and Vector

ArrayList is not Thread-safe, asynchronous; The data structure of dynamic array, the data growth is half by default, and the query is faster

The data structure of LinkedList is fast to add and delete, and the pointer needs to be moved

Vector is thread-safe and synchronous; data growth is doubled by default

The difference between HashMap and HashTable

HashMap thread is non-safe and non-synchronous; null keys and null value; HashMap initial capacity 16

HashTable thread-safe, synchronous; null key and null value are not allowed; Hashtable initial capacity 11

The difference between java collections

The above is the detailed content of The difference between java collections. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template