Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
1
  • Loading branch information
chenwei1905 committed May 6, 2020
2 parents 0c9f5c0 + e4eb9fe commit 2644925
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 1 deletion.
1 change: 1 addition & 0 deletions Collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Boolean addAll(Collection c)|
Boolean removeAll(Collection c)|
Boolean retainAll(Collection c)|
Object[] toArray()|
spliterator| 可以分离迭代器(JAVA8)

```java
\\接口练习
Expand Down
Binary file added Collection.pdf
Binary file not shown.
62 changes: 62 additions & 0 deletions CollectionUtils.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,64 @@
# [集合工具类的使用](https://github.com/chenwei1905/JavaLearning)
## 基本工具类的介绍
目前应用的集合类在`com.dexi.utils.core.collection`
## 类的基本介绍

### ArrayIter

构造方法 | 说明
--------| ----------
ArrayIter(final Object array) | 普通的基本构造
ArrayIter(final Object array, final int startIndex) | 带有开始序列的数组
ArrayIter(final Object array, final int startIndex, final int endIndex) |


接口 | 说明
----------| -----------
reset() | 重置开始序列


```java
\\测试用例


```


### BoundedPriorityQueue
构造方法 | 说明
--------| --------------
BoundedPriorityQueue(int capacity) |
BoundedPriorityQueue(int capacity, final Comparator<? super E> comparator) |


接口 | 说明
-----| -----------
offer(E e) |


```java
\\测试用例
```

### CollUtils(重点)
接口 | 说明
---------|---------


### ConcurrentHashSet


### CopiedIter


### EnumerationIter

### IteratorEnumeration

### IterUtils

### LineIter


### ComparableComparator

Binary file added CollectionUtils.pdf
Binary file not shown.
Binary file added FunctionProgramming.pdf
Binary file not shown.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
10. 元素顺序
11. Stream操作collection集合
12. \* 深入理解Stream流水线
### **Utils工具类的使用**

### [**Utils工具类的使用**](https://github.com/chenwei1905/JavaLearning/blob/master/CollectionUtils.md)




Expand Down
Binary file added Stream.pdf
Binary file not shown.

0 comments on commit 2644925

Please sign in to comment.