SynchronizedList给List加锁
warning:
这篇文章距离上次修改已过633天,其中的内容可能已经有所变动。
List<String> strs = new ArrayList<>();
List<String> strsSync = Collections.synchronizedList(strs);
可达到线程安全