Scala Byte ==(x: Float): Boolean
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。如果该值等于 x,则使用方法 ==(x:Float) 方法返回 true,否则返回 false。
Method Definition: Byte ==(x: Float): Boolean
Return Type: It returns true if this value is equal to x, false otherwise.
示例 #1:
// Scala program of Byte ==(x: Float)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte ==(x: Float) function
val result = (64.toByte).==(64:Float)
// Displays output
println(result)
}
}
输出:
true
示例 #2:
// Scala program of Byte ==(x: Float)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Byte ==(x: Float) function
val result = (25.toByte).==(111:Float)
// Displays output
println(result)
}
}
输出:
false