GWT (2.5) 模拟AbstractQueue但不提供实现。Google Guava (13.0.1) 提供了Queues类,但它不是GwtCompatible。
在我继续实现自己的 GWT 队列之前,我是否在某处缺少可用的实现?
GWT (2.5) 模拟AbstractQueue但不提供实现。Google Guava (13.0.1) 提供了Queues类,但它不是GwtCompatible。
在我继续实现自己的 GWT 队列之前,我是否在某处缺少可用的实现?
LinkedList类由 GWT 模拟,实现了Queue接口。GWT 模拟了所有的关键队列方法,包括add()
and remove()
,因此可以完美地用作队列。