国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javamapJava Collection - 如何從HashMap中提取值

Java Collection - 如何從HashMap中提取值

我們想知道如何從HashMap中提取值。
import java.util.HashMap;

public class Main {
  public static void main(String args[]) {
    HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();

    map.put(1, 2);
    map.put(2, 3);
    map.put(3, 4);

    for (Integer key : map.keySet()) {
      System.out.println(map.get(key));
    }
  }
}