Golang : Implement getters and setters
Because Golang does not provide automatic getters and setters, Go programmers will have to implement the getters and setters themselves. This is a quick tutorial on how to set and get identifiers value in a struct.
package main
import (
"fmt"
)
type Person struct {
Name string // exported identifier
email string // un-exported identifier... need Set and Get methods for help
}
func (p *Person) SetEmail(email string) {
p.email = email
}
func (p Person) GetEmail() string {
return p.email
}
func main() {
employee := Person{}
//employee := new(Person) // new object
fmt.Println(employee)
// set data to private variable via SetEmail method
employee.SetEmail("happyworker@xmail.com")
employee.Name = "Adam"
fmt.Println(employee)
// Retrieve data from private variables via GetEmail method
fmt.Println(employee.GetEmail())
fmt.Println(employee.Name)
}
Output :
{ }
{Adam happyworker@xmail.com}
happyworker@xmail.com
Adam
References :
http://golang.org/doc/effective_go.html#Getters
https://www.socketloop.com/tutorials/golang-dealing-with-struct-s-private-part
See also : Golang : Set or Add HTTP Request Headers
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
+18.8k Golang : Read input from console line
+11.6k Golang : How to detect a server/machine network interface capabilities?
+8.3k PHP : How to parse ElasticSearch JSON ?
+6.6k Golang : When to use make or new?
+11.2k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+18.5k Golang : Implement getters and setters
+5.7k CodeIgniter/PHP : Remove empty lines above RSS or ATOM xml tag
+6.6k Golang : Humanize and Titleize functions
+7.4k Golang : Dealing with struct's private part
+5.7k Golang : Launching your executable inside a console under Linux
+5.8k Golang : Detect variable or constant type
+32.8k Golang : How to check if a date is within certain range?