Set

Set接口

1
public interface Set<E> extends Collection<E>

阅读全文

Queue

接口介绍

Queue

1
public interface Queue<E> extends Collection<E>

阅读全文

HashMap

基本情况

1
2
3
public class HashMap<K,V>
extends AbstractMap<K,V>
implements Map<K,V>, Cloneable, Serializable

阅读全文

LinkedList

类的签名

1
2
3
public class LinkedList<E>
extends AbstractSequentialList<E>
implements List<E>, Deque<E>, Cloneable, java.io.Serializable

阅读全文

storm-zookeeper

源码下载

阅读全文

同时使用svn和git管理一个项目

假设项目所在的目录是: d:\project-demo\

它本身是一个git仓库,则其下必然有 .git 目录。

检出 svn 到 上面的目录

svn checkout svnpath d:\project-demo\

此时,上面的目录多了一个 .svn 目录。

阅读全文

storm概念

storm 核心概念

  • Topologies
  • Streams
  • Spouts

阅读全文

ArrayList

ArrayList的状态

  • 实例状态:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* The array buffer into which the elements of the ArrayList are stored.
* The capacity of the ArrayList is the length of this array buffer. Any
* empty ArrayList with elementData == EMPTY_ELEMENTDATA will be expanded to
* DEFAULT_CAPACITY when the first element is added.
数组中包含的元素。
*/
private transient Object[] elementData;

/**
* The size of the ArrayList (the number of elements it contains).
* 这个list的中包含的元素的个数。
*/
private int size;

阅读全文

storm

相关文档

官网

阅读全文

集合类框架

参考

java collections uml-class-diagrams

阅读全文