gpt4 book ai didi

Kotlin - 如何检查双重条件

转载 作者:行者123 更新时间:2023-12-02 13:06:37 26 4
gpt4 key购买 nike

我有 if 语句,我想检查我的变量 if 是否为 double。

这是我的代码:

val doubleVal = (findViewId<EditText>(R.id.)).text.toString()
val doubleS = Double.parseDouble(doubleVal)

if(???)
{
println("Number is double")
}
else
{
editDouble.error = "Type double number!!"
}

最佳答案

toDoubleOrNull可用的:

Parses the string as a Double number and returns the result or null if the string is not a valid representation of a number.

你可以这样使用它:

val maybeDouble = kmValue.toDoubleOrNull()
if (maybeDouble != null) {
println("Number is double")
} else {
editDouble.error = "Type double number!!"
}

关于Kotlin - 如何检查双重条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49608282/

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