18.3 映射

    初始化: map1 := map[string]int{"one": 1, "two": 2}

    (2)如何在一个映射中检测键key1是否存在:

    返回值:键对应的值或者0, true或者

    delete(map1, key1)