Jab用Map模拟一个简单的电子词典
时间: 2023-06-05 20:06:13 浏览: 104
一个简单的电子词典·
3星 · 编辑精心推荐
好的,我可以为您解答这个问题。您可以使用以下代码创建一个简单的电子词典:
```
import java.util.HashMap;
import java.util.Map;
public class Dictionary {
public static void main(String[] args) {
Map<String, String> dictionary = new HashMap<>();
dictionary.put("apple", "a fruit with red or green skin and a white inside");
dictionary.put("computer", "a machine that can store, retrieve, and process data");
dictionary.put("sun", "the star around which the earth orbits");
// Get the definition of a word
String word = "computer";
System.out.println("Definition of " + word + ": " + dictionary.get(word));
}
}
```
这里我们使用了Java中的Map数据结构来存储单词和对应的定义。通过调用`get`方法,可以根据单词获取其对应的定义。当然,这个电子词典还可以继续完善,例如增加搜索、添加单词等功能。
阅读全文