Map<String,Integer> historyBooks=new HashMap<>();
时间: 2024-01-07 21:16:15 浏览: 78
HashMap重写实现
5星 · 资源好评率100%
这是一个Java代码示例,创建了一个名为historyBooks的HashMap对象,用于存储String类型的键和Integer类型的值。该HashMap可以用于记录历史书籍的数量或其他相关信息,例如:
historyBooks.put("The History of Rome", 5);
historyBooks.put("The Rise and Fall of the Third Reich", 3);
这将向HashMap中添加两个键值对,分别表示《罗马史》有5本, 《第三帝国的兴衰》有3本。你可以使用get方法来检索HashMap中特定键的值,例如:
int numOfBooks = historyBooks.get("The History of Rome");
System.out.println("Number of books for The History of Rome: " + numOfBooks);
这将输出“Number of books for The History of Rome: 5”。
阅读全文