stack示例
C#Stack.Clone()方法 (C# Stack.Clone() method)
Stack.Clone() method is used to create a shallow copy of the stack.
Stack.Clone()方法用于创建堆栈的浅表副本。
Syntax:
句法:
Object Stack.Clone();
Parameters: None
参数:无
Return value: Object – a shallow copy of the stack.
返回值: Object –堆栈的浅表副本。
Example:
例:
declare and initialize a stack:
Stack stk = new Stack();
insertting elements:
stk.Push(100);
stk.Push(200);
stk.Push(300);
stk.Push(400);
stk.Push(500);
creating clone/copy of the stack:
Stack stk1 = (Stack)stk.Clone();
Output:
stk: 500 400 300 200 100
stk1: 500 400 300 200 100
C#示例使用Stack.Clone()方法创建堆栈的浅表副本 (C# example to create a shallow copy of the stack using Stack.Clone() method)
using System;
using System.Text;
using System.Collections;
namespace Test
{
class Program
{
//function to print stack elements
static void printStack(Stack s)
{
foreach (Object obj in s)
{
Console.Write(obj + " ");
}
Console.WriteLine();
}
static void Main(string[] args)
{
//declare and initialize a stack
Stack stk = new Stack();
//insertting elements
stk.Push(100);
stk.Push(200);
stk.Push(300);
stk.Push(400);
stk.Push(500);
//printing stack elements
Console.WriteLine("Stack (stk) elements are...");
printStack(stk);
//creating clone/copy of the stack
Stack stk1 = (Stack)stk.Clone();
//printing stack elements
Console.WriteLine("Stack (stk1) elements are...");
printStack(stk1);
//hit ENTER to exit
Console.ReadLine();
}
}
}
Output
输出量
Stack (stk) elements are...
500 400 300 200 100
Stack (stk1) elements are...
500 400 300 200 100
Reference: Stack.Clone Method
参考: Stack.Clone方法
翻译自: https://www.includehelp.com/dot-net/stack-clone-method-with-example-in-c-sharp.aspx
stack示例