Methods Value Receivers Go Lang Practical Programming Tutorial p. 7
Welcome to part 7 of the Go programming tutorial series. We ve been talking about structs, and we saw how to create a struct in the previous tutorial, along with accessing values from the struct. Now, we re curious about how methods might work. While Go doesn t have classes, it does have methods. The methods are not defined within the struct, however. Instead, they re associated with the struct. Here, you can either let these methods just access data via working as a copy of the struct, or you can actually
|
|