コンテンツにスキップ

java StreamAPIでMapを使う#

entrySet()をりようする

map.entrySet().stream()
    .map(e -> e.getKey() + ": " + e.getValue())
    .forEach(System.out::println);


References#

Tags#

  • #java