Map范例

来源:互联网 发布:武汉java工资一般多少 编辑:程序博客网 时间:2024/05/22 17:30
import java.util.*;public class TestMap{public static void main(String [] args){HashMap<String,Integer>scores=new HashMap<String,Integer>();scores.put("Kathy",42);scores.put("Bert",343);scores.put("Skyler",420);System.out.println(scores);System.out.println(scores.get("Bert"));}}

0 0
原创粉丝点击