How to create a slice with make and a smaller array with part of the slice in Go

1 Answer

0 votes
package main

import "fmt"

func main() {
	arr1 := make([]int, 7)
	view(arr1)

	arr2 := arr1[:3]
	view(arr2)
}

func view(arr []int) {
	fmt.Printf("len=%d cap=%d %v\n", len(arr), cap(arr), arr)
}



/*
run:

len=7 cap=7 [0 0 0 0 0 0 0]
len=3 cap=7 [0 0 0]

*/

 



answered Feb 27, 2020 by avibootz

Related questions

1 answer 93 views
1 answer 157 views
1 answer 95 views
1 answer 224 views
224 views asked Sep 15, 2020 by avibootz
2 answers 234 views
234 views asked Aug 23, 2020 by avibootz
1 answer 177 views
177 views asked Aug 23, 2020 by avibootz
...