init()方法用于返回一个新队列,该队列由除最后一个元素之外的所有元素组成。
函数定义: def init: Queue[A]
返回类型: It returns a new queue that consists of all the elements except the last one.
范例1:
// Scala program of init()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating queues
val q1 = Queue(1, 3, 2, 7, 6, 5)
// Print the queue
println(q1)
// Applying init method
val result = q1.init
// Display output
print("Elements of the queue except the last one: " + result)
}
}
输出:
Queue(1, 3, 2, 7, 6, 5) Elements of the queue except the last one: Queue(1, 3, 2, 7, 6)
范例2:
// Scala program of init()
// method
// Import Queue
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating queues
val q1 = Queue(5, 3, 2, 7, 6, 1)
// Print the queue
println(q1)
// Applying init method
val result = q1.init
// Display output
print("Elements of the queue except the last one: " + result)
}
}
输出:
Queue(5, 3, 2, 7, 6, 1) Elements of the queue except the last one: Queue(5, 3, 2, 7, 6)
相关用法
- Scala Map init()用法及代码示例
- Scala Set init()用法及代码示例
- Scala TreeSet init()用法及代码示例
- Scala List init()用法及代码示例
- Scala SortedMap init()用法及代码示例
- Scala Stack init()用法及代码示例
- Scala SortedSet init()用法及代码示例
- Scala Queue +:()用法及代码示例
- Scala Queue +=()用法及代码示例
- Scala Queue ++()用法及代码示例
- Scala Queue ++:()用法及代码示例
- Scala Queue sum()用法及代码示例
- Scala Queue min()用法及代码示例
- Scala Queue max()用法及代码示例
- Scala Queue map()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Queue init() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。