The Daily Go
Override a struct method
NOTE There is no object-oriented Java-like overriding in Go. In this post I explain what I call overriding struct methods in Go.
https://siadat.github.io/post/curious-gopher-override
#Guide #Struct #Beginners
Override a struct method
NOTE There is no object-oriented Java-like overriding in Go. In this post I explain what I call overriding struct methods in Go.
https://siadat.github.io/post/curious-gopher-override
#Guide #Struct #Beginners
The Daily Go
How to organize the go struct, in order to save memory.
https://medium.com/@felipedutratine/how-to-organize-the-go-struct-in-order-to-save-memory-c78afcf59ec2
#Memory #Struct
How to organize the go struct, in order to save memory.
https://medium.com/@felipedutratine/how-to-organize-the-go-struct-in-order-to-save-memory-c78afcf59ec2
#Memory #Struct
Medium
How to organize the go struct, in order to save memory.
In this article I want to explain you how the memory works internally in a 64 bit architecture, when you instantiate a struct. (You canβ¦