赞
踩
SynchronizedList是线程安全的List,它的get、set、add等方法都使用synchronized同步支持。
List list = Collections.synchronizedList(new ArrayList<>());