package com.lyms; import java.util.HashMap; import java.util.Map; /** * @auther yangfei * @createTime 2018年07月25日 16时56分 * @discription */ public class Test2 { public static void main(String[] args) { Map testLMap = testLMap(); System.out.println("第二次:"+testLMap.toString()); } private static Map testLMap() { Map dd=new HashMap(); try { dd.put("1", "1"); return dd; } catch (Exception e) { // TODO: handle exception }finally{ dd.put("4", "4"); dd=null; System.out.println("第一次:"+dd); } return dd; } }