diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d2ab5ba..941b8cbd0 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,12 @@ # 🚀Changelog ------------------------------------------------------------------------------------------------------------- -# 5.8.18.M1 (2023-04-12) +# 5.8.18.M1 (2023-04-14) ### 🐣新特性 ### 🐞Bug修复 +* 【core 】 修复CollUtil.reverseNew针对非可变列表异常(issue#3056@Github) ------------------------------------------------------------------------------------------------------------- # 5.8.17 (2023-04-12) diff --git a/hutool-core/src/main/java/cn/hutool/core/collection/ListUtil.java b/hutool-core/src/main/java/cn/hutool/core/collection/ListUtil.java index aa0e8af86..dcc4064d6 100755 --- a/hutool-core/src/main/java/cn/hutool/core/collection/ListUtil.java +++ b/hutool-core/src/main/java/cn/hutool/core/collection/ListUtil.java @@ -371,7 +371,13 @@ public class ListUtil { // 不支持clone list2 = new ArrayList<>(list); } - return reverse(list2); + + try { + return reverse(list2); + } catch (final UnsupportedOperationException e) { + // 提供的列表不可编辑,新建列表 + return reverse(list(false, list)); + } } /** diff --git a/hutool-core/src/test/java/cn/hutool/core/collection/ListUtilTest.java b/hutool-core/src/test/java/cn/hutool/core/collection/ListUtilTest.java index 3215200b3..cb26c1e56 100644 --- a/hutool-core/src/test/java/cn/hutool/core/collection/ListUtilTest.java +++ b/hutool-core/src/test/java/cn/hutool/core/collection/ListUtilTest.java @@ -254,4 +254,11 @@ public class ListUtilTest { ListUtil.setOrPadding(list, 3, "a"); Assert.assertEquals(4, list.size()); } + + @Test + public void reverseNewTest() { + final List view = ListUtil.of(1, 2, 3); + final List reverse = ListUtil.reverseNew(view); + Assert.assertEquals("[3, 2, 1]", reverse.toString()); + } }