0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

変更不可能なリストについて

Last updated at Posted at 2025-01-18

はじめに

どうも、稲葉です。この記事では、変更不可能なリストについてまとめます。

定義

変更不可能なリストとは、要素の追加や削除、置換、整列ができないリストです。List.copyOfList.ofCollectors.toUnmodifiableListで作成でき、addaddAllremovereplaceAllsetsortを呼び出すと、UnsupportedOperationExceptionがスローされます。

リスト1
// 変更不可能なリスト[A, B, C]を作成
final List<String> list12 = List.of("A", "B", "C");

// 要素を追加しようとすると、UnsupportedOperationExceptionが発生
list12.add("D");
list12.addAll(List.of("E"));

// 要素を削除しようとすると、UnsupportedOperationExceptionが発生
list12.remove("F");

// 要素を置換しようとすると、UnsupportedOperationExceptionが発生
list12.replaceAll(String::toLowerCase);
list12.set(0, "a");

// 要素を整列しようとすると、UnsupportedOperationExceptionが発生
list12.sort(Comparator.reverseOrder());

似て非なるもの

Arrays.asListで作成したリストは、要素の追加と削除ができませんが、要素の置換と整列ができるため、変更不可能なリストではありません。

リスト2
// Arrays.asListでリスト[a, b, c]を作成
final List<String> arrayList = Arrays.asList("a", "b", "c");

// 要素を置換し、[a, b, c]を[Z, X, Y]に変更
arrayList.set(0, "Z");
arrayList.set(1, "Y");
arrayList.set(2, "X");

// 要素を置換し、[Z, Y, X]を[z, y, x]に変更
arrayList.replaceAll(String::toLowerCase);

// 要素を整列し、[z, y, x]を[x, y, z]に変更
arrayList.sort(String::compareTo);

// リストをコンソールに表示
System.out.println(arrayList); // [x, y, z]

Collections.unmodifiableListで作成したリストは、その引数を変更すると変更が反映されるため、変更不可能なリストではありません。変更不可能なビューといいます。

リスト3
// 変更可能なリスト[foo]を作成
final List<String> arrayList = new ArrayList<>();
arrayList.add("foo");

// List.copyOfとCollections.unmodifiableListで変更不可能なリストとビューを作成
final List<String> list12 = List.copyOf(arrayList);
final List<String> unmodifiableList = Collections.unmodifiableList(arrayList);

// 引数のリスト[foo]を[bar]に変更
arrayList.set(0, "bar");

// 変更不可能なリストとビューをコンソールに表示
System.out.println(list12); // [foo]
System.out.println(unmodifiableList); // [bar]

気を付けること

Listインタフェースを実装しているため、変更不可能なリストはaddaddAllremovereplaceAllsetsortを呼び出してもコンパイルができてしまいます。開発チームで使用方法を取り決めておかないと、テスト時・運用時にUnsupportedOperationExceptionが発生するかもしれません。

変更不可能なリストを変更可能なリストに変換する方法

ArrayListLinkedListVectorのコンストラクタに変更不可能なリストをやると、変更可能なリストに変換できます。新規のインスタンスを作成するため、変更可能なリストを変更しても引数のリストは変更されません。

リスト4
// 変更不可能なリスト[foo]を作成
final List<String> list12 = List.of("foo");

// ArrayListで変更可能なリストを作成
final List<String> arrayList = new ArrayList<>(list12);

// 変更可能なリスト[foo]を[bar]に変更
arrayList.set(0, "bar");

// List.ofとArrayListで作成したリストをコンソールに表示
System.out.println(list12); // [foo]
System.out.println(arrayList); // [bar]

おわりに

というわけで、この記事では変更不可能なリストについてあらましを書いてみました。詳細についてはJava Platformm, Standard Edition Core Libraries, Release 11を読んでください。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?