简单类型 / 可空类型
初始化
检查值的存在
获取值
Elvis 运算符
val
n1:
Int
? =
42
val
value = n1
!!
//value
is
42, Int
println
(
"value
is
$value
"
)