当前位置:   article > 正文

花几千上万学习Java,真没必要!(三十五)

花几千上万学习Java,真没必要!(三十五)

1、Map:

 

Map接口的基本且常用的操作,用于管理键值对集合。

V put(K key, V value)
作用:向映射中添加一个键值对。
参数:K key 是键的类型,V value 是与键关联的值。
返回值:如果映射以前包含该键的映射关系,则返回旧值(即替换前的值)。如果映射不包含该键的映射关系,则返回null。
键是唯一的,如果尝试添加一个已经存在的键,则旧值将被新值替换。
V remove(Object key)
作用:从映射中移除与指定键相关联的键值对。
参数:Object key 是要移除的键。
返回值:如果映射包含该键的映射关系,则返回与该键相关联的值;如果不包含,则返回null。
void clear()
作用:从映射中移除所有键值对。
参数:无。
返回值:无。
调用此方法后,映射将为空。
boolean containsKey(Object key)
作用:判断映射中是否包含指定的键。
参数:Object key 是要检查的键。
返回值:如果映射包含该键的映射关系,则返回true;否则返回false。
boolean containsValue(Object value)
作用:判断映射中是否包含指定的值。
参数:Object value 是要检查的值。
返回值:如果映射包含至少一个键值对,其值等于value,则返回true;否则返回false。
此方法可能需要遍历映射中的所有键值对以查找值,因此效率较低。
boolean isEmpty()
作用:判断映射是否为空。
参数:无。
返回值:如果映射不包含任何键值对,则返回true;否则返回false。
int size()
作用:返回映射中键值对的数量。
参数:无。
返回值:映射中键值对的数量。

遍历方式1:

遍历方式2: 

 

测试代码1: 

  1. package maptest.com;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. //put(K key, V value):将指定的值与此映射中的指定键关联(可选操作)。如果此映射以前包含该键的映射,则替换旧值(和键关联的旧值,如果有的话)。
  5. //get(Object key):返回指定键所映射的值;如果此映射不包含该键的映射,则返回null。
  6. //remove(Object key):如果存在一个键的映射,则将其从此映射中移除(可选操作)。
  7. //containsKey(Object key):如果此映射包含指定键的映射,则返回true。
  8. //containsValue(Object value):如果此映射将一个或多个键映射到指定值,则返回true。
  9. public class HashMapDemo {
  10. public static void main(String[] args) {
  11. // 创建HashMap实例
  12. Map<String, Integer> map = new HashMap<>();
  13. // 使用put方法添加键值对
  14. map.put("Apple", 100);
  15. map.put("Banana", 200);
  16. map.put("Cherry", 150);
  17. map.put("Date", 120);
  18. map.put("Elderberry", 180);
  19. map.put("Fig", 90);
  20. // containsKey方法检查键是否存在
  21. System.out.println("Contains Key 'Apple': " + map.containsKey("Apple"));
  22. // containsValue方法检查值是否存在
  23. System.out.println("Contains Value 150: " + map.containsValue(150));
  24. // isEmpty方法检查Map是否为空
  25. System.out.println("Is Map empty? " + map.isEmpty());
  26. // size方法获取Map的大小
  27. System.out.println("Size of Map: " + map.size());
  28. // remove方法移除键值对
  29. Integer removedValue = map.remove("Banana");
  30. System.out.println("Removed Value for 'Banana': " + removedValue);
  31. // 再次检查Map的大小
  32. System.out.println("Size of Map after removed: " + map.size());
  33. // 清空Map
  34. map.clear();
  35. // 再次检查Map是否为空
  36. System.out.println("Is Map empty after clear? " + map.isEmpty());
  37. // 访问一个已被移除的键
  38. System.out.println("Value for 'Banana' after clear: " + map.get("Banana")); // 返回null
  39. }
  40. }

运行结果如下:

 

测试代码2:

  1. package maptest.com;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import java.util.Objects;
  5. //equals()方法,使用Objects.equals()比较name和color,以确保null值也能被正确处理。
  6. //hashCode()方法,使用Objects.hash()生成基于name和color的哈希码。
  7. //确保当两个Cloth对象相等时,它们的哈希码也相同。
  8. //添加与已存在键(基于equals()方法)相同的键时,HashMap会覆盖该键对应的值。
  9. //添加一个与第一个Cloth对象(T-Shirt, White)相同的对象,并改变其价格。
  10. //由于重写了equals()和hashCode()方法,HashMap认为这两个对象是相同的,因此更新价格。
  11. //实际上每次都在创建新的Cloth对象实例。
  12. //实际应用中应该重用相同的对象实例避免不必要的对象创建和内存占用。
  13. class Cloth {
  14. private String name;
  15. private String color;
  16. public Cloth(String name, String color) {
  17. this.name = name;
  18. this.color = color;
  19. }
  20. @Override
  21. public boolean equals(Object o) {
  22. if (this == o) return true;
  23. if (o == null || getClass() != o.getClass()) return false;
  24. Cloth cloth = (Cloth) o;
  25. return Objects.equals(name, cloth.name) &&
  26. Objects.equals(color, cloth.color);
  27. }
  28. @Override
  29. public int hashCode() {
  30. return Objects.hash(name, color);
  31. }
  32. @Override
  33. public String toString() {
  34. return "Cloth{" +
  35. "name='" + name + '\'' +
  36. ", color='" + color + '\'' +
  37. '}';
  38. }
  39. }
  40. public class TestMap {
  41. public static void main(String[] args) {
  42. Map<Cloth, Double> clothesMap = new HashMap<>();
  43. // 添加元素
  44. clothesMap.put(new Cloth("T-Shirt", "White"), 10.0);
  45. clothesMap.put(new Cloth("Jeans", "Blue"), 20.0);
  46. // 添加与第一个对象相同的衣服(基于name和color),会覆盖第一个对象的价格
  47. clothesMap.put(new Cloth("T-Shirt", "White"), 15.0); // 创建一个新的Cloth对象,但基于equals和hashCode方法,被视为与第一个相同。
  48. // 遍历HashMap
  49. for (Map.Entry<Cloth, Double> entry : clothesMap.entrySet()) {
  50. System.out.println(entry.getKey() + ": $" + entry.getValue());
  51. }
  52. }
  53. }

运行结果如下:

 

测试代码3:

  1. package maptest.com;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. // 珠宝首饰类
  5. class Jewelry {
  6. private String name; // 珠宝名称
  7. private double price; // 珠宝价格
  8. public Jewelry(String name, double price) {
  9. this.name = name;
  10. this.price = price;
  11. }
  12. public void setName(String name) {
  13. this.name = name;
  14. }
  15. public void setPrice(double price) {
  16. this.price = price;
  17. }
  18. public String getName() {
  19. return name;
  20. }
  21. public double getPrice() {
  22. return price;
  23. }
  24. @Override
  25. public String toString() {
  26. return "Jewelry{" +
  27. "name='" + name + '\'' +
  28. ", price=" + price +
  29. '}';
  30. }
  31. }
  32. public class JewelryMapDemo {
  33. public static void main(String[] args) {
  34. // 使用HashMap存储Jewelry对象,使用String作为key(实际可使用更复杂的唯一标识符)
  35. Map<String, Jewelry> jewelryMap = new HashMap<>();
  36. jewelryMap.put("Diamond Ring", new Jewelry("Diamond Ring", 5000.0));
  37. jewelryMap.put("Gold Necklace", new Jewelry("Gold Necklace", 2000.0));
  38. jewelryMap.put("Silver Bracelet", new Jewelry("Silver Bracelet", 300.0));
  39. jewelryMap.put("Bracelet", new Jewelry("SilvBracelet", 300.0));
  40. // 1. entrySet()遍历
  41. System.out.println("Using entrySet():");
  42. for (Map.Entry<String, Jewelry> entry : jewelryMap.entrySet()) {
  43. System.out.println(entry.getKey() + ": " + entry.getValue());
  44. }
  45. // 2. keySet()遍历
  46. System.out.println("\nUsing keySet():");
  47. for (String key : jewelryMap.keySet()) {
  48. Jewelry jewelry = jewelryMap.get(key);
  49. System.out.println(key + ": " + jewelry);
  50. }
  51. // 3. values()遍历
  52. System.out.println("\nUsing values():");
  53. for (Jewelry jewelry : jewelryMap.values()) {
  54. System.out.println(jewelry);
  55. }
  56. // 4. forEach()方法
  57. System.out.println("\nUsing forEach():");
  58. jewelryMap.forEach((key, value) -> System.out.println(key + ": " + value));
  59. // 5. entrySet().stream()
  60. System.out.println("\nUsing entrySet().stream():");
  61. jewelryMap.entrySet().stream()
  62. .forEach(entry -> System.out.println(entry.getKey() + ": " + entry.getValue()));
  63. }
  64. }

运行结果如下:

测试代码4:

  1. package maptest.com;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import java.util.Set;
  5. import java.util.Collection;
  6. public class MapWithFlowersExample {
  7. public static void main(String[] args) {
  8. // 创建HashMap实例,花名作为键,受欢迎程度整数作为值
  9. Map<String, Integer> flowerMap = new HashMap<>();
  10. flowerMap.put("Rose", 10);
  11. flowerMap.put("Tulip", 20);
  12. flowerMap.put("Lily", 15);
  13. flowerMap.put("Chrysanthemum", 5);
  14. flowerMap.put("Sunflower", 30);
  15. // get方法根据键获取值
  16. Integer value = flowerMap.get("Tulip");
  17. System.out.println("Value for 'Tulip': " + value);
  18. // keySet方法获取所有键的集合
  19. Set<String> keys = flowerMap.keySet();
  20. System.out.println("Keys: " + keys);
  21. // values方法获取所有值的集合
  22. Collection<Integer> values = flowerMap.values();
  23. System.out.println("Values: " + values);
  24. // entrySet方法获取所有键值对对象的集合
  25. Set<Map.Entry<String, Integer>> entries = flowerMap.entrySet();
  26. for (Map.Entry<String, Integer> entry : entries) {
  27. System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
  28. }
  29. // 查找并打印最受欢迎的花(值最大的那个)
  30. String mostPopularFlower = null;
  31. int maxValue = Integer.MIN_VALUE;
  32. for (Map.Entry<String, Integer> entry : entries) {
  33. if (entry.getValue() > maxValue) {
  34. maxValue = entry.getValue();
  35. mostPopularFlower = entry.getKey();
  36. }
  37. }
  38. System.out.println("Most popular flower: " + mostPopularFlower + " with value " + maxValue);
  39. }
  40. }

运行结果如下:

 

2、 LinkedHashMap:

  1. package maptest.com;
  2. import java.util.LinkedHashMap;
  3. import java.util.Map;
  4. public class LinkedHashMapBagExample {
  5. public static void main(String[] args) {
  6. // 创建一个 LinkedHashMap 实例,用于存储女士包包。
  7. Map<String, String> bags = new LinkedHashMap<>();
  8. // 向 LinkedHashMap 添加包包
  9. bags.put("Clutch Bag", "A small, elegant bag for formal events.");
  10. bags.put("Tote Bag", "A large, casual bag with two handles.");
  11. bags.put("Shoulder Bag", "A medium-sized bag with a shoulder strap.");
  12. // 遍历 LinkedHashMap,并打印每个包包及其描述
  13. System.out.println("Bags (insertion order):");
  14. for (Map.Entry<String, String> entry : bags.entrySet()) {
  15. System.out.println(entry.getKey() + ": " + entry.getValue());
  16. }
  17. // 创建一个带有LRU缓存特性的LinkedHashMap
  18. // 设置accessOrder为true,并通过重写removeEldestEntry限制大小
  19. Map<String, String> lruBags = new LinkedHashMap<String, String>(16, 0.75f, true) {
  20. protected boolean removeEldestEntry(Map.Entry<String, String> eldest) {
  21. return size() > 3; // 只保留最近的3个包包
  22. }
  23. };
  24. // 向 LRU 缓存中添加包包
  25. lruBags.put("Backpack", "A versatile bag with straps over both shoulders.");
  26. lruBags.put("Satchel Bag", "A structured, often leather, bag with a handle.");
  27. lruBags.put("Crossbody Bag", "A small bag worn across the body with a single strap.");
  28. lruBags.put("Hobo Bag", "A large, slouchy bag with a long shoulder strap."); // 这将触发removeEldestEntry
  29. // 遍历 LRU 缓存中的包包
  30. System.out.println("\nLRU Bags (access order with LRU cache):");
  31. for (Map.Entry<String, String> entry : lruBags.entrySet()) {
  32. System.out.println(entry.getKey() + ": " + entry.getValue());
  33. }
  34. // 访问一个包包,以改变其访问顺序
  35. lruBags.get("Satchel Bag");
  36. // 添加一个新的包包。
  37. lruBags.put("Messenger Bag", "A bag with a long strap worn across the body.");
  38. // 再次遍历 LRU 缓存中的包包,查看变化
  39. System.out.println("\nLRU Bags after access and insertion:");
  40. for (Map.Entry<String, String> entry : lruBags.entrySet()) {
  41. System.out.println(entry.getKey() + ": " + entry.getValue());
  42. }
  43. }
  44. }

运行结果如下;

 

 

3、集合嵌套之ArrayList嵌套HashMap:

测试代码:

  1. package maptest.com;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.List;
  5. import java.util.Map;
  6. public class NestedHashMapExample {
  7. public static void main(String[] args) {
  8. // 创建ArrayList存储HashMap
  9. List<Map<String, String>> list = new ArrayList<>();
  10. // 创建第一个HashMap并添加到列表中
  11. Map<String, String> map1 = new HashMap<>();
  12. map1.put("key1", "value1");
  13. map1.put("key2", "value2");
  14. list.add(map1);
  15. // 创建第二个HashMap并添加到列表中
  16. Map<String, String> map2 = new HashMap<>();
  17. map2.put("keyA", "valueA");
  18. map2.put("keyB", "valueB");
  19. list.add(map2);
  20. // 外层循环遍历ArrayList,并打印每个HashMap的内容
  21. for (Map<String, String> map : list) {
  22. System.out.println("HashMap:");
  23. //内层循环遍历每个HashMap中的每个键值对,并打印出来。
  24. for (Map.Entry<String, String> entry : map.entrySet()) {
  25. System.out.println(" " + entry.getKey() + ": " + entry.getValue());
  26. }
  27. }
  28. }
  29. }

 运行结果如下:

4、集合嵌套之HashMap嵌套ArrayList:

测试代码:

  1. package maptest.com;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. public class NestedArrayListExample {
  5. public static void main(String[] args) {
  6. HashMap<String, ArrayList<String>> nestedMap = new HashMap<>();
  7. ArrayList<String> list1 = new ArrayList<>();
  8. list1.add("Value1 - List1");
  9. list1.add("Value2 - List1");
  10. ArrayList<String> list2 = new ArrayList<>();
  11. list2.add("Value1 - List2");
  12. list2.add("Value2 - List2");
  13. nestedMap.put("Key1", list1);
  14. nestedMap.put("Key2", list2);
  15. //增强for循环遍历nestedMap中所有的键,nestedMap.keySet()返回键的集合。
  16. for (String key : nestedMap.keySet()) {
  17. //打印遍历到的键。
  18. System.out.println("Key: " + key);
  19. //通过当前key从nestedMap中获取对应的值,即一个ArrayList。
  20. ArrayList<String> list = nestedMap.get(key);
  21. //遍历当前键对应的ArrayList中的所有值。
  22. for (String value : list) {
  23. //打印遍历到的值。
  24. System.out.println("Value: " + value);
  25. }
  26. }
  27. }
  28. }

运行结果如下:

 

 

 

 

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/908829
推荐阅读
相关标签
  

闽ICP备14008679号