mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-05 06:03:37 +03:00
slice point to the same array
This commit is contained in:
parent
9ce988f0e6
commit
2ca35c8593
1 changed files with 14 additions and 0 deletions
14
the_go_programming_language/ch04/slice.go
Normal file
14
the_go_programming_language/ch04/slice.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
months := [...]string{1: "Jan", 2: "Feb", 3: "Mar", 4: "Apr"}
|
||||
// create a new slice by syntax [m:n]
|
||||
m1 := months[1:3]
|
||||
m2 := months[2:4]
|
||||
// Two slices point to the same underlaying array, when one changes the other changes also
|
||||
fmt.Println(m1, m2)
|
||||
m2[0] = "Feb updated"
|
||||
fmt.Print(m1, m2)
|
||||
}
|
Loading…
Add table
Reference in a new issue