ChatGPT解决这个技术问题 Extra ChatGPT

What is the Kotlin double-bang (!!) operator?

I'm converting Java to Kotlin with Android Studio. I get double bang after the instance variable. What is the double bang and more importantly where is this documented?

mMap!!.addMarker(MarkerOptions().position(london).title("Marker in London"))

S
Simson

This is unsafe nullable type (T?) conversion to a non-nullable type (T), !! will throw NullPointerException if the value is null.

It is documented here along with Kotlin means of null-safety.


what does it mean when the !! is at the end of a statement? IJ auto-convert to Kotlin did that for me val price = sale.latest!!
@ycomp, it means that sale.latest can contain null; the assignment will succeed only if sale.latest is not null and will throw NPE otherwise. This gives null-safety for val price: its type will be non-null. See kotlinlang.org/docs/reference/null-safety.html
@hotkey: So what is the difference between getting NPE - here OR when latest method is accessed on null object?
@Aada, it's common problem to debug an NPE and have a hard time locating the line / execution path that set the value to null. This null assignment could happen on a different context, class or even day! By using !! you can fail-fast and locate the root cause of a NPE. I wish Java had a similar feature (that is, w/o ugly if statements and/or assertions).
As Kotlin is Null safe programming language, to prevent throwing NullPointerException , use let. T?.let{ it.addMarker() } . By this way, you are safe.
C
CoolMind

Here is an example to make things clearer. Say you have this function

fun main(args: Array<String>) {
    var email: String
    email = null
    println(email)
}

This will produce the following compilation error.

Null can not be a value of a non-null type String

Now you can prevent that by adding a question mark to the String type to make it nullable.

So we have

fun main(args: Array<String>) {
    var email: String?
    email = null
    println(email)
}

This produces a result of

null

Now if we want the function to throw an exception when the value of email is null, we can add two exclamations at the end of email. Like this

fun main(args: Array<String>) {
    var email: String?
    email = null
    println(email!!)
}

This will throw a KotlinNullPointerException


So, why would people use '!!' even though it is unsafe because an app will be terminated when that variable has null?
@david you can use it only when you are 100% sure that the variable is not null (e.g. you explicitly checked it) and you need non-nullable variable
@FMK I get it, thanks! I understand that double bang is used to make it possible that the values of nullable type variable to go into non-nullable types variable, right?
@david yes, exactly.
I get the reasoning, but if you think about it, if we know that the value of a variable will not be null and we are 100% sure of the fact, then to use a '!!' is in theory 100% of no use as we already are 100% sure that the variable in question will not be null, ever. Surely the usage is when we are not 100% sure that the variable in question may be null and we want an error to be thrown if it is null so we can fix the root cause?
A
Andy Jazz

Kotlin's double-bang operator is an excellent sample for fans of NullPointerException (NPE).

The not-null assertion operator !! converts any value to a non-null type and throws an exception if the value is null.

val nonNull = str!!.length

If you write str!!, it'll return a non-null value of str (str is a String? here) or throw an NPE if str is null. This operator should be used in cases where the developer is guaranteeing – the value will never be null. If you want an NPE, you have to ask for it explicitly.


Asking as a beginner: why would I want to convert any value to a non-null type ?
@Wolf359 It allows you to be 100% sure that its value is not null. ("it's common problem to debug an NPE and have a hard time locating the line / execution path that set the value to null. This null assignment could happen on a different context, class or even day!" by Cascader)
V
Vlad Tkachev

!! is an assertion that it is not null. Two exclamation marks after a nullable value convert it to a non-nullable type. At the same time, before the conversion, it is not checked in any way that the value really does not contain null. Therefore, if during the execution of the program it turns out that the value that the !! operator is trying to convert is still null, then there will be only one way out - to throw a NullPointerException.