Created
March 1, 2020 20:26
-
-
Save rcoproc/b3c0c6b23dc7a2f9b0eb9a32df596269 to your computer and use it in GitHub Desktop.
Method with struct nested
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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