Having defined
type MyInt int
I would like to define a method .ShowMe() that just prints the value. I can define this either as
func (this *MyInt) ShowMe() {
fmt.Print(*this, "\n")
}
or as
func (this MyInt) ShowMe() {
fmt.Print(this, "\n")
}
and in either case, the following will work:
x := MyInt(123)
x.ShowMe()
In what cases is it recommended to define methods on values instead of on pointers?
If I use a method on a pointer, I can't do the following:
MyInt(123).ShowMe()
I also imagine that it could be slower if the method has to dereference *this multiple times, instead of just copying the value once. However, it seems like an intelligent compiler would be able to deal with this.
If I use a method on a value, I can't do the following:
func (this *MyInt) Double() {
*this *= 2
}
Unfortunately, since I don't know what good Go code looks like, I'm not sure what the implications of these observations are.