toBooleanStrict所在位置是kotlin.text.toBooleanStrict,其相關用法介紹如下。

用法:

fun String.toBooleanStrict(): Boolean

如果此字符串的內容等於單詞"true",則返回true,如果等於"false",則返回false,否則拋出異常。

可空字符串 String?.toBoolean 上還有一個寬鬆的函數版本。請注意,此函數區分大小寫。

例子:

import java.util.Locale
import kotlin.test.*

fun main(args: Array<String>) {
//sampleStart
println("true".toBooleanStrict()) // true
// "True".toBooleanStrict() //  will fail
// "TRUE".toBooleanStrict() //  will fail

println("false".toBooleanStrict()) // false
// "False".toBooleanStrict() //  will fail
// "FALSE".toBooleanStrict() //  will fail

// "abc".toBooleanStrict() //  will fail
//sampleEnd
}

輸出:

true
false