4

GWT (2.5) 模拟AbstractQueue但不提供实现。Google Guava (13.0.1) 提供了Queues类,但它不是GwtCompatible

在我继续实现自己的 GWT 队列之前,我是否在某处缺少可用的实现?

4

1 回答 1

11

LinkedList类由 GWT 模拟,实现了Queue接口。GWT 模拟了所有的关键队列方法,包括add()and remove(),因此可以完美地用作队列。

于 2012-10-30T15:28:31.473 回答