Golang methods
16 August 2024 (Updated 16 August 2024)
On this page
Define method
Go doesn’t have classes and therefore class methods. Instead, you define your methods as functions with a receiver argument.
For example, here we define a PrintDetails()
method that operates on a Person
receiver.
You can only declare a method with a receiver whose type is defined in the same package as the method. You can’t declare a method with a receiver whose type is defined in another package (including the built-in types such as int
).
Pointer receivers
You can declare methods with pointer receivers:
Why would you use a pointer receiver?
- If your method needs to modify the value itself, not a copy of it.
- To avoid copying the value on each method call. More efficient if the receiver is a large struct, for example.
Tagged:
Golang