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

जांचें कि क्या ArrayList केवल सी # में पढ़ा जाता है

यह जाँचने के लिए कि क्या ArrayList केवल पढ़ने के लिए है, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      ArrayList list1 = new ArrayList();
      list1.Add("ABC");
      list1.Add("BCD");
      list1.Add("CDE");
      list1.Add("DEF");
      list1.Add("EFG");
      list1.Add("GHI");
      list1.Add("HIJ");
      list1.Add("IJK");
      list1.Add("JKL");
      list1.Add("KLM");
      Console.WriteLine("Elements in ArrayList...");
      foreach (string res in list1) {
         Console.WriteLine(res);
      }
      ArrayList list = ArrayList.Synchronized(list1);
      Console.WriteLine("Is ArrayList synchronized? = "+list.IsSynchronized);
      ArrayList list2 = ArrayList.FixedSize(list1);
      Console.WriteLine("Is ArrayList have a fixed size? = "+list2.IsFixedSize);
      Console.WriteLine("Is the ArrayList read-only? = "+list1.IsReadOnly);
   }
}

आउटपुट

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

Elements in ArrayList...
ABC
BCD
CDE
DEF
EFG
GHI
HIJ
IJK
JKL
KLM
Is ArrayList synchronized? = True
Is ArrayList have a fixed size? = True
Is the ArrayList read-only? = False

उदाहरण

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

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      ArrayList list1 = new ArrayList();
      list1.Add("A");
      list1.Add("B");
      list1.Add("C");
      list1.Add("D");
      list1.Add("E");
      list1.Add("F");
      Console.WriteLine("Elements in ArrayList1...");
      foreach (string res in list1) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Is ArrayList1 synchronized? = "+list1.IsSynchronized);
      Console.WriteLine("Is the ArrayList1 read-only? = "+list1.IsReadOnly);
      ArrayList list2 = new ArrayList();
      list2.Add("A");
      list2.Add("B");
      list2.Add("C");
      list2.Add("D");
      list2.Add("E");
      list2.Add("F");
      Console.WriteLine("Elements in ArrayList2...");
      foreach (string res in list2) {
         Console.WriteLine(res);
      }
      Console.WriteLine("Is ArrayList synchronized? = "+list2.IsSynchronized);
      Console.WriteLine("Is the ArrayList2 read-only? = "+list2.IsReadOnly);
   }
}

आउटपुट

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

Elements in ArrayList1...
A
B
C
D
E
F
Is ArrayList1 synchronized? = False
Is the ArrayList1 read-only? = False
Elements in ArrayList2...
A
B
C
D
E
F
Is ArrayList synchronized? = False
Is the ArrayList2 read-only? = False

  1. जांचें कि कोई तत्व सी # में संग्रह में है या नहीं

    यह जांचने के लिए कि कोई तत्व संग्रह में है या नहीं, कोड इस प्रकार है - उदाहरण using System; using System.Collections.ObjectModel; public class Demo {    public static void Main(){       Collection<int> col = new Collection<int>();       col.Add(10)

  1. जांचें कि हैशसेट में सी # में निर्दिष्ट तत्व है या नहीं

    यह जांचने के लिए कि क्या हैशसेट में निर्दिष्ट तत्व है, कोड इस प्रकार है - उदाहरण using System; using System.Collections.Generic; public class Demo {    public static void Main(){       HashSet<int> set1 = new HashSet<int>();       set1.Add(25); &nb

  1. सी # में एक ऐरेलिस्ट क्लास की क्षमता संपत्ति क्या है?

    ArrayList वर्ग में क्षमता गुण उन तत्वों की संख्या प्राप्त करता है या सेट करता है जिनमें ArrayList शामिल हो सकता है। क्षमता हमेशा गिनती से अधिक होती है। क्षमता संपत्ति के लिए - arrList.Capacity डिफ़ॉल्ट क्षमता 4 है। यदि 5 तत्व हैं, तो इसकी क्षमता दोगुनी है और 8 होगी। यह जारी रहता है। आप सी # में क