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

जांचें कि ArrayList का सी # में निश्चित आकार है या नहीं

यह जांचने के लिए कि क्या ArrayList का एक निश्चित आकार है, कोड इस प्रकार है -

उदाहरण

using System;
using System.Collections;
public class Demo {
   public static void Main(String[] args) {
      ArrayList list1 = new ArrayList();
      list1.Add("One");
      list1.Add("Two");
      list1.Add("Three");
      list1.Add("Four");
      list1.Add("Five");
      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);
      Console.WriteLine("Is ArrayList have a fixed size? = "+list.IsFixedSize);
   }
}

आउटपुट

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

Elements in ArrayList...
One
Two
Three
Four
Five
Is ArrayList synchronized? = True
Is ArrayList have a fixed size? = False

उदाहरण

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

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);
   }
}

आउटपुट

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

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

  1. पायथन पांडा - जांचें कि क्या सूचकांक में NaNs है

    यह जांचने के लिए कि क्या सूचकांक में NaN है, index.hasnans . का उपयोग करें पंडों में संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd import numpy as np सूचकांक बनाना। NaN के लिए, हमने सुन्न पुस्तकालय का उपयोग किया है - index = pd.Index(['Car','Bike', np.na

  1. पायथन पांडा - जांचें कि क्या सूचकांक में डुप्लिकेट मान हैं

    यह जांचने के लिए कि क्या अनुक्रमणिका में डुप्लिकेट मान हैं, index.has_duplicates . का उपयोग करें पंडों में संपत्ति। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd अनुक्रमणिका बनाना - index = pd.Index(['Car','Bike','Truck','Car','Airplane'])

  1. पायथन पांडा - जांचें कि क्या सूचकांक में अद्वितीय मूल्य हैं

    यह जांचने के लिए कि क्या अनुक्रमणिका में अद्वितीय मान हैं, index.is_unique . का उपयोग करें । सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - pd के रूप में पांडा आयात करें आइए इंडेक्स बनाएं - index =pd.Index([50, 40, 30, 20, 10]) सूचकांक प्रदर्शित करें - प्रिंट (पंडस इंडेक्स...\n,इंडेक्स) जाँचें कि