我試圖刪除所有的空值,但如果最後一個鍵的treeSet爲空,那麼它仍然存在。所以我想如果刪除最後一項,如果它是空的。由於這是一個treeMap,我認爲我可以通過tm.lastKey()來獲取最後一個元素,但是這個方法似乎並不存在。所以這個問題是雙重的。首先,有沒有辦法刪除包括最後一個的所有空值,第二個是,.lastKey()方法在哪裏? public class Timing {
pri
public class Solution {
public static void main(String[] args) {
HashMap<String,Integer> hm = new HashMap<>();
hm.put("red",23);
hm.put("orange",1);
hm.put("yellow",32);