Scala Float to(end: Float, step: Float) 方法示例
to(end: FLoat, step: Float)方法用于返回从规定的浮点值到“结束”的范围,该范围在参数列表中给出,并且在参数列表中还指定了一些步骤。
Method Definition: def to(end: Float, step: Float): Inclusive
Return Type: It returns the range.
示例 #1:
// Scala program of Float to()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying to() method
val result = (0.0).to(9.0, 4.0)
// Displays output
println(result)
}
}
输出:
NumericRange(0.0, 4.0, 8.0)
示例 #2:
// Scala program of Float to()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying to() method
val result = (5.0).to(30.0, 4.0)
// Displays output
println(result)
}
}
输出:
NumericRange(5.0, 9.0, 13.0, 17.0, 21.0, 25.0, 29.0)