Which Java Collections are synchronized(thread safe), which are not?

前端 未结 10 2056
礼貌的吻别
礼貌的吻别 2020-12-16 11:05

Which Java Collections are synchronized, which are not?

Example: HashSet is not synchronized

10条回答
  •  时光说笑
    2020-12-16 11:46

    ArrayList, LinkedList, HashSet,LinkedHashset and TreeSet in Collection Interface and HashMap,LinkedHashMap and Treemap are all non-synchronized.

    Vector in Collection Interface is Synchronized

提交回复
热议问题