Scala Byte +(x: Double): Double
In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The method +(x:Double) method is utilized to return the sum of this value by x
Method Definition: Byte +(x: Double): Double
Return Type: It returns the sum of this value by x.
Example #1:
// Scala program of Byte +(x: Double) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying Byte +(x: Double) function val result = ( 167 .toByte).+( 125 : Double) // Displays output println(result) } } |
chevron_right
filter_none
Output:
36.0
Example #2:
// Scala program of Byte +(x: Double) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying Byte +(x: Double) function val result = ( 167 .toByte).+( 2 : Double) // Displays output println(result) } } |
chevron_right
filter_none
Output:
-87.0