Golang : Print out struct values in string format
This tutorial will show you how to create a method for a struct
to print out the struct
values out in string. The source code below should be self explanatory.
package main
import (
"strconv"
"fmt"
)
type Person struct {
Title string
Surname string
Age int
}
// method for type Person
func (this Person) String() string {
return this.Title + " " + this.Surname + " " + strconv.Itoa(this.Age) // convert int to string
}
func main() {
var guy Person
guy.Title = "Mr."
guy.Surname = "Smith"
guy.Age = 12
// print values
fmt.Println(guy.Title, guy.Surname, guy.Age)
// or use method
fmt.Println(guy.String())
}
Output :
Mr. Smith 12
Mr. Smith 12
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10.6k Golang : How to unmarshal JSON inner/nested value and assign to specific struct?
+4.6k Javascript : Access JSON data example
+12.3k Golang : Print UTF-8 fonts on image example
+4.8k Javascript : How to get width and height of a div?
+7.2k Golang : Dealing with postal or zip code example
+8.2k Golang : Add build version and other information in executables
+46.1k Golang : Read tab delimited file with encoding/csv package
+6.9k Mac OSX : Find large files by size
+5.8k CodeIgniter/PHP : Remove empty lines above RSS or ATOM xml tag
+5.8k Golang : Launching your executable inside a console under Linux
+4.9k Unix/Linux : secure copying between servers with SCP command examples
+28.7k Golang : Detect (OS) Operating System