Scala Short -(x: Byte) method with example

Last Updated : 11 Nov, 2019
The -(x: Byte) method is utilized to find the difference of the stated Short value and 'x' of type Byte.
Method Definition: def -(x: Byte): Int Return Type: It returns Int.
Example: 1# Scala
// 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:
869
Example: 2# Scala
// 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
Comment

Explore