What does ?: do in Kotlin? (Elvis Operator)

后端 未结 8 861
青春惊慌失措
青春惊慌失措 2020-11-29 01:15

I can\'t figure out what ?: does in for example this case

val list = mutableList ?: mutableListOf() 

and why can it be modifi

8条回答
  •  Happy的楠姐
    2020-11-29 01:34

    A little addition though is this

    X = A ?: B
    

    X will still be null if both A and B evaluate to null

    Therefore, if you want X to always be non-null, make sure B is always a non-null or that B always evaluates to non-null if it's a function or expression.

提交回复
热议问题