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?

More than 3 years have passed since last update.

Java(clear)

Posted at

【clear】
ArrayListの要素をすべて削除する際に使用するメソッドである。
以下のようにして使用する。
変数名.clear();

Java(add)の回で使用したArrayList「array」を
clearメソッドで全ての要素を削除する。

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

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

System.out.println(array);

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

ArrayListの要素をすべてを削除する。

array.clear();
System.out.println(array);

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

[]

要素の値がすべて削除されて何も表示されていない。

0
0
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
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?