Skip to content

Instantly share code, notes, and snippets.

@rcoproc
Created March 1, 2020 20:26
Show Gist options
  • Save rcoproc/b3c0c6b23dc7a2f9b0eb9a32df596269 to your computer and use it in GitHub Desktop.
Save rcoproc/b3c0c6b23dc7a2f9b0eb9a32df596269 to your computer and use it in GitHub Desktop.
Method with struct nested
package main
import "fmt"
type Contact struct {
phone, address string
}
type Employee struct {
name string
salary int
contact Contact
}
func (c *Contact) changePhone(newPhone string) {
c.phone = newPhone
}
func main() {
e := Employee{
name: "Ross Geller",
salary: 1200,
contact: Contact{
phone: "011 8080 8080",
address: "New Delhi, India",
},
}
// e before phone change
fmt.Println("e before phone change =", e)
// change phone
e.contact.changePhone("011 1010 1222")
// e after phone change
fmt.Println("e after phone change =", e)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment