gpt4 book ai didi

Kotlin String.toBoolean 替换

转载 作者:行者123 更新时间:2023-12-02 12:40:03 27 4
gpt4 key购买 nike

由于 Kotlin 1.4 String.toBoolean() 已被弃用而没有记录替换。
我们现在应该使用 java.lang.Boolean.parseBoolean相反,或者有没有 Kotlin 方法来替换它?

/**
* Returns `true` if the content of this string is equal to the word "true", ignoring case, and `false` otherwise.
*/
@Deprecated("Use Kotlin compiler 1.4 to avoid deprecation warning.")
@DeprecatedSinceKotlin(hiddenSince = "1.4")
@kotlin.internal.InlineOnly
public actual inline fun String.toBoolean(): Boolean = this.toBoolean()

/**
* Returns `true` if this string is not `null` and its content is equal to the word "true", ignoring case, and `false` otherwise.
*/
@JvmName("toBooleanNullable")
@SinceKotlin("1.4")
@kotlin.internal.InlineOnly
public actual inline fun String?.toBoolean(): Boolean = java.lang.Boolean.parseBoolean(this)

最佳答案

正如你在问题中所展示的,现在有 String?.toBoolean() .类似,但也可以在 null 上调用引用,在这种情况下它将返回 false .

关于Kotlin String.toBoolean 替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63615953/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com