在 Scala Stack class
,则使用toBuffer()方法返回由堆栈的所有元素组成的缓冲区。
函数定义: def toBuffer[B >: A]: Buffer[B]
返回类型: It returns a buffer consisting of all the elements of the stack.
范例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
相关用法
- Scala Set toBuffer()用法及代码示例
- Scala Queue toBuffer()用法及代码示例
- Scala TreeSet toBuffer()用法及代码示例
- Scala Iterator toBuffer()用法及代码示例
- Scala SortedSet toBuffer()用法及代码示例
- Scala Stack :+()用法及代码示例
- Scala Stack +:()用法及代码示例
- Scala Stack ++:()用法及代码示例
- Scala Stack top()用法及代码示例
- Scala Stack :()用法及代码示例
- Scala Stack sum()用法及代码示例
- Scala Stack pop()用法及代码示例
- Scala Stack contains()用法及代码示例
- Scala Stack take()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Stack toBuffer() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。