📅  最后修改于: 2023-12-03 15:05:02.372000             🧑  作者: Mango
Double <(x: Byte)
方法是 Scala 中一个比较常用的方法,用于判断当前的 Double 类型值是否小于给定的 Byte 类型值。
def <(x: Byte): Boolean
返回一个 Boolean 类型值,如果当前 Double 类型值小于给定的 Byte 类型值 x,则返回 true;否则返回 false。
val a: Double = 5.5
val b: Byte = 3
if (a < b) {
println("a is less than b")
} else {
println("a is not less than b")
}
输出结果为:
a is not less than b