Scala Float until() 方法与示例
until()方法用于返回从第一个点到结束点的范围。这里第一点是包容性的,但端点是排斥性的。
Method Definition: (First_Point).until(End_Point)
Return Type: It returns the created range.
示例 #1:
// Scala program of Float until()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying until method
val result = (1).until(9)
// Displays output
println(result)
}
}
输出:
Range(1, 2, 3, 4, 5, 6, 7, 8)
示例 #2:
// Scala program of Float until()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying until method
val result = (-6).until(0)
// Displays output
println(result)
}
}
输出:
Range(-6, -5, -4, -3, -2, -1)