mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
优化IndexedComparator性能
This commit is contained in:
parent
f7fa704d6c
commit
47c2eda038
@ -13,6 +13,7 @@
|
||||
* 【crypto 】 支持"RSA/ECB/OAEPWithSHA-1AndMGF1Padding"的RSA加解密(pr#3675@Github)
|
||||
* 【core 】 Opt增加ifFail(pr#1239@Gitee)
|
||||
* 【poi 】 增加GlobalPoiConfig(issue#IAEHJH@Gitee)
|
||||
* 【core 】 优化IndexedComparator性能(pr#1240@Gitee)
|
||||
|
||||
### 🐞Bug修复
|
||||
* 【core 】 修复因RFC3986理解有误导致的UrlPath处理冒号转义问题(issue#IAAE88@Gitee)
|
||||
|
@ -55,7 +55,7 @@ public class IndexedComparator<T> implements Comparator<T> {
|
||||
public IndexedComparator(boolean atEndIfMiss, T... objs) {
|
||||
Assert.notNull(objs, "'objs' array must not be null");
|
||||
this.atEndIfMiss = atEndIfMiss;
|
||||
map = new HashMap<>(1 + (int) (objs.length / 0.75));
|
||||
map = new HashMap<>(objs.length, 1);
|
||||
for (int i = 0; i < objs.length; i++) {
|
||||
map.put(objs[i], i);
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ import java.util.Comparator;
|
||||
*
|
||||
* @param <T> 被排序元素类型
|
||||
* @author looly
|
||||
* @since 4.1.5
|
||||
* @since 5.8.30
|
||||
*/
|
||||
public class ArrayIndexedComparator<T> implements Comparator<T> {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user