📜  mac如何选择多个不连续的单词 - Java代码示例

📅  最后修改于: 2022-03-11 14:52:41.203000             🧑  作者: Mango

代码示例2
public class Deque implements Iterable {
   public Deque()                           // construct an empty deque
   public boolean isEmpty()                 // is the deque empty?
   public int size()                        // return the number of items on the deque
   public void addFirst(Item item)          // add the item to the front
   public void addLast(Item item)           // add the item to the end
   public Item removeFirst()                // remove and return the item from the front
   public Item removeLast()                 // remove and return the item from the end
   public Iterator iterator()         // return an iterator over items in order from front to end
   public static void main(String[] args)   // unit testing (optional)
}