带有示例的 Scala Short +(x: Byte) 方法
+(x: Byte)方法用于查找声明的 Short 值和 Int 类型的“x”之和。
Method Definition: def +(x: Byte): Int
Return Type: It returns Int.
示例:1#
// Scala program of +(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Byte) method
val result = (991).+(126)
// Displays output
println(result)
}
}
输出:
1117
示例:2#
// Scala program of +(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Byte) method
val result = (-111).+(-125)
// Displays output
println(result)
}
}
输出:
-236