golang Go interface Interface To implement an interface in Go, we just need to implement all the methods in the interface. Sa... 2022.08.21 golang
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)... 2022.08.13 golang
golang Go Array and Slice Golang Array and Slice Answer Array : Fixed size Slice : Flex size Usage It's better to show just s... 2022.08.01 golang