The -(x: Byte) method is utilized to find the difference of the stated Short value and 'x' of type Byte.
Scala
Scala
Method Definition: def -(x: Byte): Int Return Type: It returns Int.Example: 1#
// Scala program of -(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying -(x: Byte) method
val result = (995).-(126)
// Displays output
println(result)
}
}
Output:
Example: 2#
869
// Scala program of -(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying -(x: Byte) method
val result = (111).-(-126)
// Displays output
println(result)
}
}
Output:
237