在Java中,可以使用firstEntry()
方法來獲取TreeMap中的第一個元素。示例如下:
import java.util.TreeMap;
import java.util.Map;
public class Main {
public static void main(String[] args) {
TreeMap<Integer, String> treeMap = new TreeMap<>();
treeMap.put(1, "Apple");
treeMap.put(2, "Banana");
treeMap.put(3, "Cherry");
Map.Entry<Integer, String> firstEntry = treeMap.firstEntry();
System.out.println("First element: " + firstEntry.getValue());
}
}
在上面的示例中,我們首先創建一個TreeMap對象treeMap
,然后向其中添加了三個鍵值對。接著使用firstEntry()
方法獲取第一個元素,并打印出其值。輸出結果為:
First element: Apple