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


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


在 Scala Stack class,則使用push()方法在堆棧頂部添加元素。

函數定義: def push(elem: A): Stack.this.type

返回類型: It adds an element on the top of the stack.



範例1:

// Scala program of push()  
// method  
  
import scala.collection.mutable.Stack  
  
// Creating object  
object GfG  
{  
      
    // Main method  
    def main(args:Array[String])  
    {  
          
        // Creating a stack 
        var s = Stack[Int]()  
  
        // Applying push method 
        s.push(1) 
        s.push(2)  
        s.push(3)  
        s.push(4) 
          
        // Print the Stack 
        println(s)  
  
    }  
} 
輸出:
Stack(4, 3, 2, 1)

範例2:

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


相關用法


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