📅  最后修改于: 2022-03-11 14:53:33.376000             🧑  作者: Mango
x ?: y // yields `x` if `x` is not null, `y` otherwise.
x ?: throw SomeException() // yields `x` if `x` is not null, throws SomeException otherwise