android10 / android10/Android-CleanArchitecture-Kotlin
Question about What is the best option?, Code Proposal
未关闭
discussion
question
- 主要语言
- Kotlin
- 星标
- 4.8k
- 派生
- 929
- PR 合并指标
- 30 天内没有已合并 PR
描述
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())
}
```
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。