Scala Stack clone()方法及示例
在Scala Stack类中, clone() 方法被用来创建一个给定堆栈的副本。
方法定义: def clone():Stack[A]
返回类型。它返回一个新的堆栈,它是给定堆栈的副本。
例子 #1:
// Scala program of clone()
// 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 clone method
val result = s1.clone
// Displays output
print("Clone of the stack: " + result)
}
}
输出。
Stack(1, 2, 3, 4, 5)
Clone of the stack: Stack(1, 2, 3, 4, 5)
例子#2。
// Scala program of clone()
// method
// Import Stack
import scala.collection.mutable._
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating stack
val s1 = Stack(3, 4, 5, 6, 7, 8)
// Print the stack
println(s1)
// Applying clone method
val result = s1.clone
// Displays output
print("Clone of the stack: " + result)
}
}
输出。
Stack(3, 4, 5, 6, 7, 8)
Clone of the stack: Stack(3, 4, 5, 6, 7, 8)
极客教程