import java.util.HashMap; class Main { public static void main(String[] args) { //创建 HashMap HashMap<String, Integer> prices = new HashMap<>(); //向HashMap插入条目 prices.put("Shoes", 200); prices.put("Bag", 300); prices.put("Pant", 150); System.out.println("HashMap: " + prices); //以10%的折扣重新计算鞋子的价格 int newPrice = prices.compute("Shoes", (key, value) -> value - value * 10/100); System.out.println("鞋折扣价: " + newPrice); //打印更新的HashMap System.out.println("更新后的 HashMap: " + prices); } }
版权声明:
本文来源网络,所有图片文章版权属于原作者,如有侵权,联系删除。
本文网址:https://www.bianchenghao6.com/java-jiao-cheng/16961.html