一个线程安全的类是指在多个线程同时调用时,保证类的内部状态以及方法返回的值都是正确的。在Java中,一些线程安全的集合类有Stack、Vector、Properties、Hashtable等。
Java中的Stack类实现了基于LIFO原则的堆栈数据结构。因此,Stack类支持许多操作,如push、pop、peek、search、empty等。
import java.util.*; public class StackTest { public static void main (String[] args) { Stack<Integer> stack = new Stack<Integer>(); stack.<strong>push</strong>(5); stack.<strong>push</strong>(7); stack.<strong>push</strong>(9); Integer num1 = (Integer)stack.<strong>pop</strong>(); System.out.println("The element popped is: " + num1); Integer num2 = (Integer)stack.<strong>peek</strong>(); System.out.println(" The element on stack top is: " + num2); } }
The element popped is: 9 The element on stack top is: 7
Java中的Vector 类实现了一个根据需要增长的对象数组。Vector类可以支持 add()、remove()、get()、elementAt()、size()等方法
import java.util.*; public class VectorTest { public static void main(String[] arg) { Vector vector = new Vector(); vector.<strong>add</strong>(9); vector.add(3); vector.add("ABC"); vector.add(1); vector.add("DEF"); System.out.println("The vector is: " + vector); vector.<strong>remove</strong>(1); System.out.println("The vector after an element is removed is: " + vector); } }
The vector is: [9, 3, ABC, 1, DEF] The vector after an element is removed is: [9, ABC, 1, DEF]
以上是在Java中,哪些集合类是线程安全的?的详细内容。更多信息请关注PHP中文网其他相关文章!