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

จะสร้าง 1-Tuple หรือ Singleton Tuple ใน C # ได้อย่างไร?


คลาส Tuple แสดงถึง 1-tuple ซึ่งเรียกว่าซิงเกิลตัน ทูเพิลคือโครงสร้างข้อมูลที่มีลำดับขององค์ประกอบ

ตัวอย่าง

ให้เรามาดูตัวอย่างการใช้ 1-tuple ใน C# -

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<int> tuple = new Tuple<int>(100);
      Console.WriteLine("Value = " + tuple.Item1);
      if (tuple.Item1 == 150) {
         Console.WriteLine(tuple.Item1);
      }
      if (tuple.Item1 == 100) {
         Console.WriteLine(tuple.Item1);
      }
   }
}

ผลลัพธ์

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

Value = 100
100

ตัวอย่าง

ให้เราดูตัวอย่างอื่นเพื่อนำ 1-tuple ไปใช้ใน C# -

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<string> tuple = new Tuple<string>("amit");
      Console.WriteLine("Value = " + tuple.Item1);
      if (tuple.Item1 == "tom") {
         Console.WriteLine(tuple.Item1);
      }
      if (tuple.Item1 == "amit") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item1);
      }
   }
}

ผลลัพธ์

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

Value = amit
Exists: Tuple Value = amit