2
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 5 years have passed since last update.

JAVA Listに格納された最後の値を取り出す

Last updated at Posted at 2015-12-28

スクリーンショット 2015-12-28 16.41.43.png

▪️GetTheLastStoredValue.java

import java.util.*;

public class GetTheLastStoredValue {
	public static void main(String[] args) {
		List<Integer> numbers = new ArrayList<Integer>();
		numbers.add(5);
		numbers.add(100);
		numbers.add(9);
		numbers.add(4);
		numbers.add(50);

		// acquire the last value stored away by a list
		System.out.println(numbers.get(numbers.size() - 1));
		// acquire the value of the last but one(最後から2番目の値を取得する)
		System.out.println(numbers.get(numbers.size() - 2));
		System.out.println(numbers.get(numbers.size() - 3));
	}

}

▪️実行結果
50
4
9

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