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