Created
July 30, 2019 06:55
-
-
Save ch8n/c6998920ce224de901c64ffacb4ba92b to your computer and use it in GitHub Desktop.
Destructuring an object : General way
This file contains hidden or 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
| //class | |
| data class Person(val name:String,val age:Int) | |
| //instantiate | |
| val person = Person("ch8n", 25) | |
| //access | |
| val name = person.name | |
| val age = person.age |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment