Scala Int doubleValue() 方法与示例
doubleValue()方法用于返回指定 int 值的双精度值。
Method Definition: def doubleValue(): Byte
Return Type: It returns the double value of the given int value.
示例 #1:
// Scala program of Int doubleValue
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying doubleValue method
val result = (15).doubleValue
// Displays output
println(result)
}
}
输出:
15.0
示例 #2:
// Scala program of Int doubleValue
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying doubleValue method
val result = (1586).doubleValue
// Displays output
println(result)
}
}
输出:
1586.0