Scala 字节 +(x: Int): Int
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。方法 +(x:Int) 方法用于返回该值乘以 x 的总和
Method Definition: Byte +(x: Int): Int
Return Type: It returns the sum of this value by x.
示例 #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 = (167.toByte).+(125:Int)
// Displays output
println(result)
}
}
输出:
36
示例 #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 = (167.toByte).+(2:Int)
// Displays output
println(result)
}
}
输出:
-87