←back to thread

Go subtleties

(harrisoncramer.me)
235 points darccio | 1 comments | | HN request time: 0s | source
Show context
Someone ◴[] No.45670768[source]
FTA: “In Go, empty structs occupy zero bytes. The Go runtime handles all zero-sized allocations, including empty structs, by returning a single, special memory address that takes up no space.

This is why they’re commonly used to signal on channels when you don’t actually have to send any data. Compare this to booleans, which still must occupy some space.”

I would expect the compiler to ensure that all references to true and false reference single addresses, too. So, at best, the difference of the more obscure code is to, maybe, gain 8 bytes. What do I overlook?

replies(5): >>45671332 #>>45671424 #>>45671852 #>>45672220 #>>45674995 #
1. arccy ◴[] No.45671424[source]
it's also so that there's no confusion about what the value represents.