Scala Double +(x: Int) 方法与示例
+(x: Int)方法用于查找参数中指定的 double 和给定的“x”类型 int 的总和。
Syntax:def +(x: Int): Double
Returns: It return the sum of the specified double and the given int type ’x’.
示例 1:
// Scala program of +(x: Int)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Int) method
val result = 5.39432456.+(32)
// Displays output
println(result)
}
}
输出:
37.39432456
示例 2:
// Scala program of +(x: Int)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying +(x: Int) method
val result = 5.39432456.+(78)
// Displays output
println(result)
}
}
输出:
83.39432456