Home »
Scala »
Scala Programs
Scala program to get the first N item from the queue using take() method
Here, we are going to learn how to get the first N item from the queue using take() method in Scala programming language?
Submitted by Nidhi, on June 20, 2021 [Last updated : March 12, 2023]
Scala - Getting First N Elements of a Queue
Here, we will create a queue using the Queue collection class and get the first N items from the queue using the take() method and print the result on the console screen.
The Queue is a linear data structure, It follows the First In First Out (FIFO) property. We can insert and remove the item in the queue from different ends of the queue.
Scala code to get the first N item from the queue using take() method
The source code to get the first N item from the queue using the take() method is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Scala program to print the first N items from queue
import scala.collection.mutable._
object Sample {
// Main method
def main(args: Array[String]) {
var queue = Queue(60, 25, 23, 40, 50);
var result = queue.take(3);
println(result);
}
}
Output
Queue(60, 25, 23)
Explanation
Here, we used an object-oriented approach to create the program. And, we imported Collection classes using the below statement,
import scala.collection.mutable._
And, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.
In the main() function, we created a queue queue using the Queue collection class. Then we got the first N items of the queue using the take() method and printed the result on the console screen.
Scala Queue Programs »