synchronizedMap() 用于获取由指定映射支持的同步(线程安全)映射。1 语法public static <K,V> Map<K,V> synchronizedMap(Map<K,V>
syncedList() 用于获取由指定列表支持的同步(线程安全)集合。1 语法public static <T> List<T> synchronizedList(List<T> list)
syncedCollection() 用于获取由指定集合支持的同步(线程安全)集合。1 语法public static <T> Collection<T> synchronizedCollectio
swap() 用于交换指定列表中指定位置的元素。1 语法public static void swap(List<?> list, int i, int j) 2 参数list:这是
sort() 用于对指定列表中存在的元素进行排序。sort()有两个重载方法:Java Collections sort(list) 方法Java Collections sort(list,
singletonMap() 用于获取不可变的Map,仅将指定的键映射到指定的值。1 语法public static <K,V> Map<K,V> singletonMap(K key, V
singletonList() 用于获取一个仅包含指定对象的不可变列表。1 语法public static <T> List<T> singletonList(T o) 2 参数o:该
singleton() 用于获取一个仅包含指定对象的不可变集合。1 语法public static <T> Set<T> singleton(T o) 2 参数o:该对象将存储
shuffle()工作原理是随机置换指定列表元素。有以下两个重载方法:Java Collections shuffle(list) 方法Java Collections shuffle(list
rotation() 用于将指定列表中的元素旋转指定距离。1 语法public static void rotate(List<?> list, int distance) 2 参数lis