-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1
- Loading branch information
Showing
7 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.