- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在通过 Google 的 Android 开发人员代码实验室为 unscramble 应用程序工作。我正在尝试初始化我的变量 wordsList
是一个空的可变字符串列表:
private var wordsList: MutableList<String> = mutableListOf()
但是,在调试过程中,我看到 wordsList
的值是null
而不是像 []
这样的空列表.我在 kotlin playground 测试了代码,它应该是 []
.我附上了 android studio 向我展示的截图。我做错了什么,为什么我没有看到预期的行为?
这是我的项目的 gradle 文件:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.4.21"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
和我的应用程序的 gradle 文件
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.example.android.unscramble"
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
viewBinding = true
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
// LiveData
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'
// ViewModel
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
implementation 'androidx.fragment:fragment-ktx:1.2.5'
}
最佳答案
引用Kotlin docs :
During an instance initialization, the initializer blocks are executedin the same order as they appear in the class body, interleaved withthe property initializers
因此,当 wordsList
尚未初始化时,您的断点可能是从上方的 init { }
block 命中的。您可以选择在调用 getNextWord()
之前初始化您的变量,或者只是将此 init { }
block 向下移动,以便在您的所有属性都已初始化时执行它。
关于android - 为什么 Kotlin 的 mutableListOf() 返回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67816065/
我将 mutableListOf 与pair() 一起使用,但我不明白它是如何以及为什么工作的。 var x = mutableListOf>>() val y= ArrayList() val te
我正在通过 Google 的 Android 开发人员代码实验室为 unscramble 应用程序工作。我正在尝试初始化我的变量 wordsList是一个空的可变字符串列表: private var
这个问题已经有答案了: Difference between ArrayList() and mutableListOf() in Kotlin (4 个回答) 已关闭 6 年前。 我尝试在 Kotl
我正在通过 Google 的 Android 开发人员代码实验室为 unscramble 应用程序工作。我正在尝试初始化我的变量 wordsList是一个空的可变字符串列表: private var
最终我试图在共享首选项中存储一个 Int 数组,但我知道 Kotlin 不支持它。因此,我使用此处的方法将 Int 数组转换为 String 数组: How can I store an intege
我在 Android Studio 3.4.1 中使用 Kotlin 构建 AAR,当我尝试使用 mutableListOf 时遇到可怕的“未解析引用”错误。 val myBuffer: mutab
private val repositories = mutableListOf() private val repositories = ArrayList() 都是可变列表,那么mutableLi
在 Kotlin 中,mutableListOf 方法返回一个实现了 Kotlin 的 MutableList 接口(interface)的 java.util.ArrayList 实例。 现在,li
我是一名优秀的程序员,十分优秀!