摘要:
只是分析流程public void displayImage(String uri, ImageView imageView, DisplayImageOptions options, ImageLoadingListener listener) { checkConfiguration(); if (imageView == null) { throw new IllegalArgumentException(ERROR_WRONG_ARGUMENTS); } if (listener == null) { ... 阅读全文
摘要:
http://pengcqu.iteye.com/blog/4921961、java.util.Collection 是一个集合接口。它提供了对集合对象进行基本操作的通用接口方法。Collection接口在Java 类库中有很多具体的实现。Collection接口的意义是为各种具体的集合提供了最大化的统一操作方式。Collection├List│├LinkedList│├ArrayList│└Vector│ └Stack└SetMap|-HashMap|-Hashtable|-WeakHashMap详细介绍:List特点:元素有放入顺序,元素可重复Map特点:元素按键值对存储,无放入顺序Set 阅读全文