[java] The characteristics of common implementation classes of the three major container classes (List, Set, Map)

The characteristics of common implementation classes of the three container classes (List, Set, Map)

Introduction

This article summarizes the characteristics of the commonly used implementation classes (ArrayList, Vector, LinkedList, HashSet, HashMap, HashTable) of the three container classes (List, Set, Map)

1. List part

1、ArrayList

insert image description here

2、LinkedList

insert image description here

3、Vector

insert image description here

2. Set part

1、HashSet

insert image description here

3. Map part

1、HashTable

insert image description here

2、HashMap

insert image description here

Guess you like

Origin blog.csdn.net/qq_51383106/article/details/131785727