android10 / android10/Android-CleanArchitecture-Kotlin

Question about What is the best option?, Code Proposal

Aperta
#32 2 commenti 0 reazioni 0 assegnatari Vedi su GitHub
discussion question
Lingua principale
Kotlin
Stelle
4.8k
Fork
929
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

Reading the code I got this and thought asking about what is the best option or if it's the same for the following code in order to learn a little more. For big gurus of Kotlin, what about using companion object or constructor in data clases or clases, for example, following code:
```kotlin
data class Movie(val id: Int, val poster: String) {

companion object {
fun empty() = Movie(0, String.empty())
}
}
```
Vs. This Is what I used to use
```kotlin
data class Movie(val id: Int, val poster: String) {
constructor():this(0, String.empty())
}
```

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.