Golang Stringer interface
16 August 2024 (Updated 17 August 2024)
Stringer
is a common interface used in Go that’s defined by the fmt
package:
You can define / “implement” the String()
method for a custom struct:
So that you can then do something like:
Which should output:
John Doe (42 years) Bob Smith (90 years)
Tagged:
Golang