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
| // Public.kt file | |
| // Visible everywhere | |
| public const val numberThree = 3 | |
| // Visible everywhere | |
| public open class User() { | |
| // Visible to everyone with visibility on the User class | |
| public val numberEight = numberThree.plus(5) | |
| } |
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
| // Protected.kt file | |
| // Visible inside this file | |
| private const val numberThree = 3 | |
| // Visible inside this file | |
| private open class User() { | |
| // Visible inside the User class and subclasses | |
| protected val numberEight = numberThree.plus(5) | |
| } |
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
| // Private.kt file | |
| // Visible just inside this file | |
| private const val numberThree = 3 | |
| // Visible just inside this file | |
| private class User() { | |
| // Visible just inside the user class | |
| private val numberEight = numberThree.plus(5) | |
| } |
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
| data class User( | |
| val name: String, | |
| val surname: String = "", | |
| val address: String = "") { | |
| class Builder { | |
| private lateinit var name : String | |
| private var surname : String = "" | |
| private var address : String = "" |
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
| @Entity(tableName = "Users") | |
| data class UserRM( | |
| @PrimaryKey | |
| @ColumnInfo(name = "id") | |
| val id: Int, | |
| @ColumnInfo(name = "name") | |
| val name: String, |
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
| val steveJobs= User("Steve Jobs", 56) | |
| val steveJobsToday= steveJobs.copy(age = 63) |
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
| data class User(val name: String, val age: Int) { | |
| var address : String = "" | |
| } |
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
| val steveJobs= User("Steve Jobs", 56) | |
| fun print() { | |
| val (name, age) = steveJobs | |
| println("$name, $age years of age") // prints "Steve Jobs, 56 years of age" | |
| steveJobs.component1() // name | |
| steveJobs.component2() // age | |
| } |
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
| public class User { | |
| private String name; | |
| private int age; | |
| public User(String name, int age) { | |
| this.name = name; | |
| this.age = age; | |
| } |
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
| [...] | |
| mEditText.setOnTouchListener( | |
| new OnEditTextRightDrawableTouchListener(mEditText) { | |
| @Override | |
| public void OnDrawableClick() { | |
| // The right drawable was clicked. Your action goes here. | |
| } | |
| }); | |
| [...] |