In Scala Stack class
, the take() method is utilized to return a stack consisting of the first ‘n’ elements of the stack.
Method Definition: def take(n: Int): Stack[A]
Return Type: It returns a stack consisting of the first ‘n’ elements of the stack.
Example #1:
import scala.collection.mutable. _
object GfG
{
def main(args : Array[String])
{
val s 1 = Stack( 1 , 2 , 3 , 4 )
println(s 1 )
val result = s 1 .take( 2 )
print( "Stack containing first two elements: " + result)
}
}
|
Output:
Stack(1, 2, 3, 4)
Stack containing first two elements: Stack(1, 2)
Example #2:
import scala.collection.mutable. _
object GfG
{
def main(args : Array[String])
{
val s 1 = Stack( 1 , 2 , 3 , 4 )
println(s 1 )
val result = s 1 .take( 3 )
print( "Stack containing first three elements: " + result)
}
}
|
Output:
Stack(1, 2, 3, 4)
Stack containing first three elements: Stack(1, 2, 3)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 Nov, 2019
Like Article
Save Article