Scala Stack ``toBuffer()`` 方法:返回所有元素组成的 Buffer 示例


发布日期 : 2020-04-29 00:31:07 UTC

访问量: 10 次浏览

Scala Stack toBuffer() 方法及示例

在 Scala Stack 类中,toBuffer() 方法被用来返回一个由堆栈中所有元素组成的缓冲区。

方法定义: def toBuffer[B >: A]: Buffer[B]

返回类型: 它返回一个由堆栈中所有元素组成的缓冲区。

示例 1

// Scala program of toBuffer() 
// method 

// Import Stack 
import scala.collection.mutable._

// Creating object 
object GfG 
{ 

    // Main method 
    def main(args:Array[String]) 
    { 

        // Creating stack
        val s1 = Stack(5, 2, 13, 7, 1) 

        // Print the stack 
        println(s1) 

        // Applying toBuffer method  
        val result = s1.toBuffer

        // Display output 
        print("Elements in the buffer: ") 

        for(elem <- result) 
            print(elem + " ") 

    } 
} 

输出:

Stack(5, 2, 13, 7, 1)
Elements in the buffer: 5 2 13 7 1

示例 2

// Scala program of toBuffer() 
// 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, 5) 

        // Print the stack 
        println(s1) 

        // Applying toBuffer method  
        val result = s1.toBuffer

        // Display output 
        print("Elements in the buffer: ") 

        for(elem <- result) 
            print(elem + " ") 

    } 
} 

输出:

Stack(1, 2, 3, 4, 5)
Elements in the buffer: 1 2 3 4 5