Section11 Complete
This commit is contained in:
23
Section11/89-6.go
Normal file
23
Section11/89-6.go
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
Consider the following slice declaration:
|
||||
friends := []string{"Marry", "John", "Paul", "Diana"}
|
||||
|
||||
Using copy() function create a copy of the slice. Prove that the slices
|
||||
are not connected by modifying one slice and notice that the other slice is not modified.
|
||||
*/
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
friends := []string{"Marry", "John", "Paul", "Diana"}
|
||||
|
||||
yourFriends := make([]string, len(friends))
|
||||
copy(yourFriends, friends)
|
||||
|
||||
yourFriends[0] = "Dan"
|
||||
|
||||
fmt.Println(friends, yourFriends)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user