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

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

Which Java Collections are synchronized, which are not?

Example: HashSet is not synchronized

10条回答
  •  隐瞒了意图╮
    2020-12-16 11:58

    import java.util.Collections; //Import this

    List syncList = Collections.synchronizedList(new ArrayList());
    

    This is how you can synchronise a list in java.

提交回复
热议问题