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