题解 | #map简单应用#

map简单应用

http://www.nowcoder.com/practice/7a47e465315c40848d5daba676f9ac29

import java.util.*;

public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String name = scanner.next(); Map<Integer, String> map = new HashMap<Integer, String>(); map.put(1, "Amy"); map.put(2, "Joe"); map.put(3, "Tom"); map.put(4, "Susan");

    //write your code here......
    Set<Map.Entry<Integer,String>> entrys = map.entrySet();
    for(Map.Entry<Integer,String> entry:entrys){
        System.out.println(entry.getKey()+":"+entry.getValue());
    }
    map.put(5, name);
    map.remove(4);
    map.replace(3,"Tommy");
    System.out.println();
    
    for(Map.Entry<Integer,String> entry:map.entrySet()){
        System.out.println(entry.getKey()+":"+entry.getValue());
    }
}

}

全部评论

相关推荐

落花情:同学,瞅瞅我司,医疗独角兽,校招刚开,名额有限,先到先得,我的主页最新动态,绿灯直达,免笔试~
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务