Home > キー取得


JavaでTreeMapの2番目の要素のキーを取得する方法

方法1: イテレーションを使用する方法 TreeMapのキーと値のセットを取得し、2番目の要素を取得します。その後、その要素のキーを取得します。import java.util.*; public class Main { public static void main(String[] args) { TreeMap<Integer, String> treeMap = new TreeMap<>(); treeMap.put(1, "Apple"); treeMap.put(2, "Banana"); >>More