Scala Short +(x: Double)方法及示例
利用+(x: Double)方法,可以找到所述Short值与Double类型的’x’之和。
方法定义: def +(x: Double):Double
返回类型。它返回Double。
例如:1#。
// Scala program of +(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Double) method
val result = (1000).+(10.4311)
// Displays output
println(result)
}
}
输出。
1010.4311
例如:2#
// Scala program of +(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Double) method
val result = (-1000).+(54.1233)
// Displays output
println(result)
}
}
输出。
-945.8767