Golang : Dealing with struct's private part
One of the most common things in Golang that easily confuse a newbie is how to declare variable/constant/identifier name properly. Many programmers are able to compile their code successfully, but left puzzled by missing/empty data after being processed. The reason is because the variable/identifier name starts with small cap and in essence turning the variable/identifier into a private type. (see https://golang.org/ref/spec#Exported_identifiers )
IF for some reason that you need to use a private variable inside a struct, the way to manipulate the private variable is to associate methods to it.
For the code example below, the email
variable is private type inside the Person struct and the SetEmail() and Email() methods are created specifically to deal with the email
variable.
Here you go :
package main
import "fmt"
import "encoding/json"
type Person struct {
Name string // 1st letter cap is public, while small cap is private
email string
Gender string
Age int
}
func (p *Person) SetEmail(email string) {
p.email = email
}
func (p Person) Email() string {
return p.email
}
var v = []byte(`[
{
"name": "Denis Silva Costa",
"email": "d*@gmail.com",
"gender": "Male",
"age": 27
},
{
"name": "Ariana Cursino",
"email": "a@a.com",
"gender": "Female",
"age": 31
}
]`)
func main() {
var people []Person
err := json.Unmarshal(v, &people)
if err != nil {
}
// email WILL NOT be displayed because it is private
fmt.Println(people)
// set data to private variable via SetEmail method
people[0].SetEmail("d@gmail.com")
people[1].SetEmail("a@a.com")
// Retrieve data from private variables via Email method
fmt.Println(people[0].Email())
fmt.Println(people[1].Email())
}
Output :
[{Denis Silva Costa Male 27} {Ariana Cursino Female 31}]
d@gmail.com
a@a.com
Hope this short tutorial can be useful to new comers to Golang. Happy coding!
Oh, by the way, the original title for this article is "Golang : Dealing with private variable in struct". ;-)
Reference :
See also : Golang : fmt.Println prints out empty data from struct
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
+3.8k Java : Random alphabets, alpha-numeric or numbers only string generator
+4.8k Linux/MacOSX : How to symlink a file?
+11.2k How to test Facebook App on localhost ?
+5.9k Golang : List all packages and search for certain package
+9.8k Golang : How to generate Code 39 barcode?
+8.1k Golang : Trim everything onward after a word
+9.9k Golang : Qt get screen resolution and display on center example
+24.6k Golang : Change file read or write permission example
+3.5k Golang : Fix go-cron set time not working issue
+14.2k Golang : Compress and decompress file with compress/flate example
+14k Golang : unknown escape sequence error
+11.2k Golang : Roll the dice example