在 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++)
相关用法
- Scala Stack contains()用法及代码示例
- Scala Stack take()用法及代码示例
- Scala Stack pop()用法及代码示例
- Scala Stack sum()用法及代码示例
- Scala Stack last()用法及代码示例
- Scala Stack map()用法及代码示例
- Scala Stack ++:()用法及代码示例
- Scala Stack :()用法及代码示例
- Scala Stack max()用法及代码示例
- Scala Stack min()用法及代码示例
- Scala Stack top()用法及代码示例
- Scala Stack +:()用法及代码示例
- Scala Stack :+()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Stack push() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。