摘要: Properties Properties是Map的子实现类,其定义如下 public class Properties extends Hashtable<Object,Object> Hashtable是Map接口的一个子类,是旧的操作类,与HashMap没什么区别。 Properties是操作 阅读全文
posted @ 2023-11-04 20:10 rowbed 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Queue(队列) Queue是一种先进先出(FIFO:First In First Out)的有序集合: Queue是Collection的子接口,其定义如下 public interface Queue<E> extends Collection<E> LinkedList实现了Queue的子接 阅读全文
posted @ 2023-11-04 17:33 rowbed 阅读(11) 评论(0) 推荐(0) 编辑