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