當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Scala Stack pop()用法及代碼示例


在 Scala Stack class,則使用pop()方法刪除並返回堆棧頂部的元素。

函數定義: def pop(): A

返回類型: It removes and returns the element at the top of the stack.



範例1:

// Scala program of pop()  
// method  
  
import scala.collection.mutable.Stack  
  
// Creating object  
object GfG  
{  
      
    // Main method  
    def main(args:Array[String])  
    {  
          
        // Creating a stack 
        var s = Stack("C++", "Java", "Python", "Scala")  
          
        // Print the stack 
        println(s) 
          
        // Print the top of the stack 
        println("Top of the stack: " + s.top) 
  
        // Applying pop method     
        val result = s.pop 
          
        // Print the popped element 
        println("Popped element: " + result)  
  
    }  
} 
輸出:
Stack(C++, Java, Python, Scala)
Top of the stack: C++
Popped element: C++

範例2:

// Scala program of pop()  
// method  
  
import scala.collection.mutable.Stack  
  
// Creating object  
object GfG  
{  
      
    // Main method  
    def main(args:Array[String])  
    {  
          
        // Creating a stack 
        var s = Stack(1, 2, 3, 4)  
          
        // Print the stack 
        println(s) 
          
        // Print the top of the stack 
        println("Top of the stack: " + s.top) 
  
        // Applying pop method     
        val result = s.pop 
          
        // Print the popped element 
        println("Popped element: " + result)  
  
    }  
} 
輸出:
Stack(1, 2, 3, 4)
Top of the stack: 1
Popped element: 1


相關用法


注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Scala Stack pop() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。