Scala Double %(x: Float) 方法
在 Scala 中,Double 是一个 64 位浮点数,相当于 Java 的 double 基本类型。当给定的 Double 值除以浮点值时, %(x: Float)方法用于返回余数。
Method Definition – def %(x: Float)
Returns – Returns the remainder of the division of this value by x.
示例 #1:
// Scala program to explain the working
// of Double %(x: Float) method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying %(x: Float) function
val result = (12.500001.toDouble).%(8:Float)
// Displays output
println(result)
}
}
输出:
4.500000999999999
示例 #2:
// Scala program to explain the working
// of Double %(x: Float) method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying %(x: Float) function
val result = (16.50012.toDouble).%(13:Float)
// Displays output
println(result)
}
}
输出:
3.500119999999999