gpt4 book ai didi

kotlin - 如何使用 Google 代码风格在 Android (Kotlin) 中声明变量?

转载 作者:行者123 更新时间:2023-12-03 04:53:08 26 4
gpt4 key购买 nike

我开始在 Kotlin 中构建应用程序,我想知道如何正确初始化变量。例如,在 Java 中,它就像:

 private TextView mSomeTextView;

然后我们在一些方法中调用findViewById。但在 Kotlin 中我不能只写这样的东西,我需要:

private val textView: TextView = findViewById(R.id.text)

我像以前一样把它写在onCreate下。问题:它的位置合适吗?如果没有——我应该在哪里以及如何做?

最佳答案

您应该使用lateinit :

private lateinit var textView: TextView

override fun onCreate(savedInstanceState: Bundle?) {
...
textView = findViewById(R.id.text)
}

关于kotlin - 如何使用 Google 代码风格在 Android (Kotlin) 中声明变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47083268/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com