0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Java(remove)

Posted at

【remove】
ArrayListの要素を削除する際に使用するメソッドである。
以下のように削除したい要素のインデックスを指定して使用する。
変数名.remove(インデックス)

Java(add)の回で使用したArrayList「array」で
removeメソッドで指定した場所の要素を削除する。

ArrayList<String> array = new ArrayList<String>();

array.add("日本語");
array.add("英語");
array.add("フランス語");
array.add("中国語");
array.add("ドイツ語");

System.out.println(array);

[日本語, 英語, フランス語, 中国語, ドイツ語]

インデックス2の「フランス語」を削除する。

array.remove(2);
System.out.println(array);

リストの中を出力すると以下のようになる。

[日本語, 英語, 中国語, ドイツ語]

指定した要素の値が削除される。

0
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?