简单类型 / 字符串

//Empty strings
val someEmptyString = ""

if (someEmptyString.isEmpty()) {
    println("string is empty")
}