-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaps.go
More file actions
45 lines (35 loc) · 672 Bytes
/
Copy pathmaps.go
File metadata and controls
45 lines (35 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Run this example from terminal by
* using this command - go run maps.go
*
* Output:
map: map[k2:14 k1:7]
v1: 7
len: 2
map: map[k1:7]
prs: false
map: map[foo:1 bar:2]
* Document
To create an empty map, use the builtin make: make(map[key-type]val-type).
*/
package main
import (
"fmt"
)
func main() {
// create map
// make(map[key-type]val-type).
m := make(map[string]int)
m["k1"] = 7;
m["k2"] = 14
fmt.Println("map:" , m)
v1 := m["k1"]
fmt.Println("v1: ", v1)
fmt.Println("len:", len(m))
delete(m, "k2")
fmt.Println("map:", m)
_, prs := m["k2"]
fmt.Println("prs:", prs)
n:= map[string]int{"foo": 1, "bar": 2}
fmt.Println("map:", n)
}