[Kotlin] 코틀린 Nullable
아래와 같은 에러 문구가 발생 하는 이유와 해결 방법 Smart cast to 'abc' is impossible, because 'abc' is a mutable property that could have been changed by this time 사용한 변수가 Nullable 인경우 ? 을 입력하여 Nullable 상태를 확인한다. backToast = Toast.makeText(this, resources.getString(R.string.hello), Toast.LENGTH_SHORT) backToast.show() // Error Happen backToast = Toast.makeText(this, resources.getString(R.string.hello), Toast.LENGTH_..
Computer/Android
2020. 9. 16. 02:01