2022-08

golang

Go interface

Interface To implement an interface in Go, we just need to implement all the methods in the interface. Sa...
golang

Go make and new

make Only slice, channel, map Let's see sample code // Make // slice v := make([]int, 5) v2 := make([]int, 0)...
golang

Go Array and Slice

Golang Array and Slice Answer Array : Fixed size Slice : Flex size Usage It's better to show just s...
スポンサーリンク