java中的容器是安全的吗
发布网友
发布时间:2024-03-31 02:12
我来回答
共2个回答
热心网友
时间:2024-08-01 00:57
不安全,会爆炸
热心网友
时间:2024-08-01 01:01
1、你是指并发操作时的线程安全吗?
2、容器中线程安全的如:vectory,hashtable,非线程安全的如:hashmap,arrylist等。
3、对于原定义非线程的容器如:hashmap,arraylist可以使用Collections中的synchronizedList(list),synchronizedMap(map),synchronizedSet(set)等方法来使原来非线程安全的容器编程线程安全。
4、另一方面容器中使用泛型:容器<类型>也是使容器安全的一种方式。