Este método (viene bajo el espacio de nombres System.Collections ) se usa para obtener la cantidad de elementos contenidos en la pila. La capacidad es la cantidad de elementos que la pila puede almacenar y el conteo es la cantidad de elementos que realmente hay en la pila. La capacidad siempre es mayor o igual que Count. Recuperar el valor de esta propiedad es una operación O(1).
Sintaxis:
public virtual int Count { get; }
Valor de Retorno: Devuelve el número de elementos contenidos en la Pila de tipo System.Int32 .
Los siguientes programas ilustran el uso de la propiedad discutida anteriormente:
Ejemplo 1:
// C# code illustrate the // Stack.Count Property using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Stack Stack myStack = new Stack(); // Inserting the elements into the Stack myStack.Push("Chandigarh"); myStack.Push("Delhi"); myStack.Push("Noida"); myStack.Push("Himachal"); myStack.Push("Punjab"); myStack.Push("Jammu"); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); Console.WriteLine(myStack.Count); } }
Total number of elements in the Stack are : 6
Ejemplo 2:
// C# code illustrate the // Stack.Count Property using System; using System.Collections; class GFG { // Driver code public static void Main() { // Creating a Stack Stack myStack = new Stack(); // Displaying the count of elements // contained in the Stack Console.Write("Total number of elements"+ " in the Stack are : "); // The function should return 0 // as the Stack is empty and it // doesn't contain any element Console.WriteLine(myStack.Count); } }
Total number of elements in the Stack are : 0
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA