Open In App
Related Articles

Scala Stack take() method with example

Improve Article
Improve
Save Article
Save
Like Article
Like

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:




// Scala program of take() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating stack
        val s1 = Stack(1, 2, 3, 4
          
        // Print the stack 
        println(s1
           
        // Applying take method  
        val result = s1.take(2)
          
        // Display output 
        print("Stack containing first two elements: " + result) 
         
    


Output:

Stack(1, 2, 3, 4)
Stack containing first two elements: Stack(1, 2)

Example #2:




// Scala program of take() 
// method 
  
// Import Stack 
import scala.collection.mutable._
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
      
        // Creating stack
        val s1 = Stack(1, 2, 3, 4
          
        // Print the stack 
        println(s1
           
        // Applying take method  
        val result = s1.take(3)
          
        // Display output 
        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
Previous
Next
Similar Reads