集合--Collections类概述和成员方法
Collections类用途
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/*
Collections类概述
针对与集合创建的工具类(最常用的方法,将线程不安全的集合转成线程安全的)
*/
public class CollectionsDemo1 {
public static void main(String[] args) {
ArrayList<String> strings = new ArrayList<>();
//将线程不安全的集合转成线程安全的
List<String> strings1 = Collections.synchronizedList(strings);
strings1.add("hello");
strings1.add("world");
strings1.add("java");
strings1.add("bigdata");
strings1.add("hadoop");
System.out.println(strings);
System.out.println(strings1);
}
}