Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

Queue.C# में संपत्ति की गणना करें

कतार में निहित तत्वों की संख्या प्राप्त करने के लिए C# में Queue.Count संपत्ति का उपयोग किया जाता है।

सिंटैक्स

वाक्य रचना इस प्रकार है -

public virtual int Count { get; }

उदाहरण

आइए अब एक उदाहरण देखें -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      Queue<int> queue = new Queue<int>();
      queue.Enqueue(100);
      queue.Enqueue(200);
      queue.Enqueue(300);
      queue.Enqueue(400);
      queue.Enqueue(500);
      queue.Enqueue(600);
      queue.Enqueue(700);
      queue.Enqueue(800);
      queue.Enqueue(900);
      queue.Enqueue(1000);
      Console.WriteLine("Queue...");
      foreach(int i in queue) {
         Console.WriteLine(i);
      }
      Console.WriteLine("Count of elements in the Queue = "+queue.Count);
      queue.Clear();
      Console.WriteLine("Count of elements in the Queue [Updated] = "+queue.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Queue...
100
200
300
400
500
600
700
800
900
1000
Count of elements in the Queue = 10
Count of elements in the Queue [Updated] = 0

उदाहरण

आइए अब एक और उदाहरण देखें -

using System;
using System.Collections.Generic;
public class Demo {
   public static void Main() {
      Queue<int> queue = new Queue<int>();
      queue.Enqueue(100);
      queue.Enqueue(200);
      queue.Enqueue(300);
      Console.WriteLine("Queue...");
      foreach(int i in queue) {
         Console.WriteLine(i);
      }
      Console.WriteLine("Count of elements in the Queue = "+queue.Count);
      queue.Enqueue(800);
      queue.Enqueue(900);
      queue.Enqueue(1000);
      Console.WriteLine("Count of elements in the Queue [Updated] = "+queue.Count);
      queue.Clear();
      Console.WriteLine("Count of elements in the Queue [Updated] = "+queue.Count);
   }
}

आउटपुट

यह निम्नलिखित आउटपुट उत्पन्न करेगा -

Queue...
100
200
300
Count of elements in the Queue = 3
Count of elements in the Queue [Updated] = 6
Count of elements in the Queue [Updated] = 0

  1. सी # में हैशटेबल क्लास की गणना संपत्ति क्या है?

    हैशटेबल वर्ग के तत्वों की गिनती खोजने के लिए, गणना संपत्ति का उपयोग करें। सबसे पहले, हैशटेबल क्लास को तत्वों के साथ सेट करें - Hashtable ht = new Hashtable(); ht.Add("One", "Tom"); ht.Add("Two", "Jack"); ht.Add("Three", "Peter"); ht.Add(&q

  1. सी # में बिटअरे क्लास की गणना संपत्ति क्या है?

    काउंट प्रॉपर्टी का उपयोग करके बिटअरे वर्ग में तत्वों की संख्या की गणना करें। आइए सबसे पहले अपनी बिटअरे क्लास सेट करें - BitArray arr = new BitArray(10); अब काउंट प्रॉपर्टी का उपयोग करें जैसा कि नीचे दिखाया गया है - उदाहरण using System; using System.Collections; public class Demo {    p

  1. सी # में ArrayList वर्ग की गणना संपत्ति क्या है?

    ArrayList वर्ग में गणना गुण ArrayList में तत्वों की संख्या की गणना करता है। सबसे पहले, ArrayList में तत्व जोड़ें - ArrayList arrList = new ArrayList(); arrList.Add(98); arrList.Add(55); arrList.Add(65); arrList.Add(34); फिर सरणी सूची की गिनती प्राप्त करें - arrList.Count C# में काउंट प्रॉपर्टी क