toBooleanStrict
所在位置是kotlin.text.toBooleanStrict
,其相關用法介紹如下。
用法:
如果此字符串的內容等於單詞"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
相關用法
- Kotlin toBooleanStrictOrNull用法及代碼示例
- Kotlin toByteArray用法及代碼示例
- Kotlin toTypedArray用法及代碼示例
- Kotlin to用法及代碼示例
- Kotlin toSortedMap用法及代碼示例
- Kotlin toProperties用法及代碼示例
- Kotlin toList用法及代碼示例
- Kotlin toString用法及代碼示例
- Kotlin then用法及代碼示例
- Kotlin take用法及代碼示例
- Kotlin takeWhile用法及代碼示例
- Kotlin takeLastWhile用法及代碼示例
- Kotlin takeLast用法及代碼示例
- Kotlin thenComparator用法及代碼示例
- Kotlin titlecase用法及代碼示例
- Kotlin thenBy用法及代碼示例
- Kotlin thenByDescending用法及代碼示例
- Kotlin thenDescending用法及代碼示例
- Kotlin trimIndent用法及代碼示例
- Kotlin trimMargin用法及代碼示例
- Kotlin associateBy用法及代碼示例
- Kotlin all用法及代碼示例
- Kotlin map用法及代碼示例
- Kotlin filterNot用法及代碼示例
- Kotlin reduceRight用法及代碼示例
注:本文由純淨天空篩選整理自kotlinlang.org大神的英文原創作品 kotlin.text.toBooleanStrict。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。