DEV Community

Discussion on: Golang - why is function return type always byte ([])?

Collapse
 
ajsharp profile image
Alex Sharp 🛠sharesecret.co

Byte arrays and strings have some key differences, the main one being byte arrays/slices are mutable, while strings are immutable. My guess is many places byte arrays are returned have to do with that, and the ability to efficiently change the size of the array without allocating new memory. So, if you're reading from a unix socket and you don't know how much data you're going to read (the case with both the examples above) it's probably faster to use a byte array rather than re-allocate a larger string every time you read more data from the socket.

Collapse
 
devdrake0 profile image
Si

Byte arrays and strings have some key differences

This could be misleading to people unfamiliar with Go. The underlying structure of strings are byte arrays, which is why you have to be careful when you loop over a string because it'll give you byte-by-byte not character-by-character.

My guess is many places byte arrays are returned have to do with that, and the ability to efficiently change the size of the array without allocating new memory.

Byte arrays are used because they can be unmarshalled, whereas strings cannot.