Stack.Clear Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Odebere všechny objekty z objektu Stack.
public:
virtual void Clear();
public virtual void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Overridable Sub Clear ()
Příklady
Následující příklad ukazuje, jak vymazat hodnoty .Stack
using namespace System;
using namespace System::Collections;
void PrintValues( IEnumerable^ myCollection );
int main()
{
// Creates and initializes a new Stack.
Stack^ myStack = gcnew Stack;
myStack->Push( "The" );
myStack->Push( "quick" );
myStack->Push( "brown" );
myStack->Push( "fox" );
myStack->Push( "jumps" );
// Displays the count and values of the Stack.
Console::WriteLine( "Initially," );
Console::WriteLine( " Count : {0}", myStack->Count );
Console::Write( " Values:" );
PrintValues( myStack );
// Clears the Stack.
myStack->Clear();
// Displays the count and values of the Stack.
Console::WriteLine( "After Clear," );
Console::WriteLine( " Count : {0}", myStack->Count );
Console::Write( " Values:" );
PrintValues( myStack );
}
void PrintValues( IEnumerable^ myCollection )
{
IEnumerator^ myEnum = myCollection->GetEnumerator();
while ( myEnum->MoveNext() )
{
Object^ obj = safe_cast<Object^>(myEnum->Current);
Console::Write( " {0}", obj );
}
Console::WriteLine();
}
/*
This code produces the following output.
Initially,
Count : 5
Values: jumps fox brown quick The
After Clear,
Count : 0
Values:
*/
using System;
using System.Collections;
public class SamplesStack {
public static void Main() {
// Creates and initializes a new Stack.
Stack myStack = new Stack();
myStack.Push( "The" );
myStack.Push( "quick" );
myStack.Push( "brown" );
myStack.Push( "fox" );
myStack.Push( "jumps" );
// Displays the count and values of the Stack.
Console.WriteLine( "Initially," );
Console.WriteLine( " Count : {0}", myStack.Count );
Console.Write( " Values:" );
PrintValues( myStack );
// Clears the Stack.
myStack.Clear();
// Displays the count and values of the Stack.
Console.WriteLine( "After Clear," );
Console.WriteLine( " Count : {0}", myStack.Count );
Console.Write( " Values:" );
PrintValues( myStack );
}
public static void PrintValues( IEnumerable myCollection ) {
foreach ( Object obj in myCollection )
Console.Write( " {0}", obj );
Console.WriteLine();
}
}
/*
This code produces the following output.
Initially,
Count : 5
Values: jumps fox brown quick The
After Clear,
Count : 0
Values:
*/
Imports System.Collections
Public Class SamplesStack
Public Shared Sub Main()
' Creates and initializes a new Stack.
Dim myStack As New Stack()
myStack.Push("The")
myStack.Push("quick")
myStack.Push("brown")
myStack.Push("fox")
myStack.Push("jumps")
' Displays the count and values of the Stack.
Console.WriteLine("Initially,")
Console.WriteLine(" Count : {0}", myStack.Count)
Console.Write(" Values:")
PrintValues(myStack)
' Clears the Stack.
myStack.Clear()
' Displays the count and values of the Stack.
Console.WriteLine("After Clear,")
Console.WriteLine(" Count : {0}", myStack.Count)
Console.Write(" Values:")
PrintValues(myStack)
End Sub
Public Shared Sub PrintValues(myCollection As IEnumerable)
Dim obj As [Object]
For Each obj In myCollection
Console.Write(" {0}", obj)
Next obj
Console.WriteLine()
End Sub
End Class
' This code produces the following output.
'
' Initially,
' Count : 5
' Values: jumps fox brown quick The
' After Clear,
' Count : 0
' Values:
Poznámky
Count je nastavená na nulu a uvolní se také odkazy na jiné objekty z prvků kolekce.
Tato metoda je O(n)
operace, kde n
je Count.
Platí pro
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.