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