泛型先进先出 : 泛型集合 « 泛型 « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 泛型 » 泛型集合 
12. 2. 4. 泛型先进先出
import java.util.AbstractCollection;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;

public class QueueTester {
  public static void main(String[] args) {
    BoundedQueue<String> q = new BoundedQueue<String>(10);

    q.add("A");
    q.add("B");
    q.add("C");
    q.remove();
    q.add("D");

    ArrayList<String> a = new ArrayList<String>();
    a.addAll(q);
    System.out.println("Result of bulk add: " + a);
    System.out.println("Minimum: " + Collections.min(q));
  }
}

/**
 * A first-in, first-out bounded collection of objects.
 */
class BoundedQueue<E> extends AbstractCollection<E> {
  private Object[] elements;
  private int head;
  private int tail;
  private int count;

  public BoundedQueue(int capacity) {
    elements = new Object[capacity];
    count = 0;
    head = 0;
    tail = 0;
  }

  public Iterator<E> iterator() {
    return new Iterator<E>() {
      public boolean hasNext() {
        return visited < count;
      }

      public E next() {
        int index = (head + visited% elements.length;
        E r = (Eelements[index];
        visited++;
        return r;
      }

      public void remove() {
        throw new UnsupportedOperationException();
      }

      private int visited = 0;
    };
  }

  /**
   * Remove object at head.
   
   @return the object that has been removed from the queue
   * @precondition size() > 0
   */
  public E remove() {
    E r = (Eelements[head];
    head = (head + 1% elements.length;
    count--;
    return r;
  }

  /**
   * Append an object at tail.
   
   @param anObject
   *            the object to be appended
   @return true since this operation modifies the queue. (This is a
   *         requirement of the collections framework.)
   * @precondition !isFull()
   */
  public boolean add(E anObject) {
    elements[tail= anObject;
    tail = (tail + 1% elements.length;
    count++;
    return true;
  }

  public int size() {
    return count;
  }

  /**
   * Checks whether this queue is full.
   
   @return true if the queue is full
   */
  public boolean isFull() {
    return count == elements.length;
  }

  /**
   * Gets object at head.
   
   @return the object that is at the head of the queue
   * @precondition size() > 0
   */
  public E peek() {
    return (Eelements[head];
  }

}
12. 2. 泛型集合
12. 2. 1. 泛型和集合ArrayList
12. 2. 2. 数组:存储数组中对象类数据项目
12. 2. 3. 使用通用的比较接口
12. 2. 4. 泛型先进先出
12. 2. 5. A list declared to hold objects of a type T can also hold objects that extend from T.
12. 2. 6. 泛型ArrayList工具
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.