Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

การสร้างเสื้อคลุมที่ซิงโครไนซ์สำหรับวัตถุ SortedList ใน C #


ในการสร้างเสื้อคลุมที่ซิงโครไนซ์สำหรับวัตถุ SortedList รหัสจะเป็นดังนี้ -

ตัวอย่าง

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList sortedList = new SortedList();
      sortedList.Add("1", "Tom");
      sortedList.Add("2", "Ryan");
      sortedList.Add("3", "Nathan");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in sortedList){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      SortedList sortedList2 = SortedList.Synchronized(sortedList);
      Console.WriteLine("SortedList is synchronized? = "+sortedList2.IsSynchronized);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

SortedList elements...
Key = 1, Value = Tom
Key = 2, Value = Ryan
Key = 3, Value = Nathan
SortedList is synchronized? = True

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

using System;
using System.Collections;
public class Demo {
   public static void Main(){
      SortedList sortedList = new SortedList();
      sortedList.Add("1", "AB");
      sortedList.Add("2", "CD");
      sortedList.Add("3", "EF");
      sortedList.Add("4", "GH");
      sortedList.Add("5", "IJ");
      sortedList.Add("6", "KL");
      Console.WriteLine("SortedList elements...");
      foreach(DictionaryEntry d in sortedList){
         Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value);
      }
      Console.WriteLine("SortedList is synchronized? = "+sortedList.IsSynchronized);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

SortedList elements...
Key = 1, Value = AB
Key = 2, Value = CD
Key = 3, Value = EF
Key = 4, Value = GH
Key = 5, Value = IJ
Key = 6, Value = KL
SortedList is synchronized? = False