在 Scala Stack class
,则使用apply()方法返回堆栈中给定位置的元素。堆栈的顶部对应于第0位的元素,依此类推。
函数定义: def apply(idx: Int): A
返回类型: It returns an element at a given position in the stack.
范例1:
// Scala program of apply()
// method
import scala.collection.mutable.Stack
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a stack
val s1 = Stack(1, 2, 3, 4, 5)
// Print the stack
println(s1)
// Applying apply method
val result = s1.apply(0)
// Display output
println("Element at 0th position: " + result)
}
}
输出:
Stack(1, 2, 3, 4, 5) Element at 0th position: 1
范例2:
// Scala program of apply()
// method
import scala.collection.mutable.Stack
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a stack
val s1 = Stack("C++", "Java", "Python", "Scala")
// Print the stack
println(s1)
// Applying apply method
val result = s1.apply(2)
// Display output
println("Element at 2nd position: " + result)
}
}
输出:
Stack(C++, Java, Python, Scala) Element at 2nd position: Python
相关用法
- Scala Map apply()用法及代码示例
- Scala Set apply()用法及代码示例
- Scala List apply()用法及代码示例
- Scala SortedSet apply()用法及代码示例
- Scala TreeSet apply()用法及代码示例
- Scala Queue apply()用法及代码示例
- Scala SortedMap apply()用法及代码示例
- Scala Listset apply()用法及代码示例
- Scala Stack contains()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Scala Stack apply() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。