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

सी # में 4-टुपल या चौगुनी कैसे बनाएं?

Tuple वर्ग एक 4-टुपल का प्रतिनिधित्व करता है, जिसे चौगुना कहा जाता है। टपल एक डेटा संरचना है जिसमें तत्वों का एक क्रम होता है।

इसका उपयोग -

. में किया जाता है
  • डेटा सेट तक आसान पहुंच।
  • डेटा सेट का आसान हेरफेर।
  • डेटा के एकल सेट का प्रतिनिधित्व करने के लिए।
  • किसी विधि से अनेक मान लौटाने के लिए
  • एक विधि में कई मान पास करने के लिए

उदाहरण

आइए अब C# में 4-टुपल को लागू करने के लिए एक उदाहरण देखें -

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<string,string,string,string> tuple = new Tuple<string,string,string,string>("nathan", "steve", "katie", "tim");
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      if (tuple.Item1 == "nathan") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item1);
      }
      if (tuple.Item2 == "jack") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item2);
      }
      if (tuple.Item3 == "katie") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item3);
      }
      if (tuple.Item4 == "tom") {
         Console.WriteLine("Exists: Tuple Value = " +tuple.Item4);
      }
   }
}

आउटपुट

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

Value (Item1)= nathan
Value (Item2)= steve
Value (Item3)= katie
Value (Item4)= tom
Exists: Tuple Value = nathan
Exists: Tuple Value = katie

उदाहरण

आइए अब C# में 4-टुपल को लागू करने के लिए एक और उदाहरण देखें -

using System;
public class Demo {
   public static void Main(string[] args) {
      Tuple<int,int,int,int> tuple = new Tuple<int,int,int,int>(100, 150, 300, 450);
      Console.WriteLine("Value (Item1)= " + tuple.Item1);
      Console.WriteLine("Value (Item2)= " + tuple.Item2);
      Console.WriteLine("Value (Item3)= " + tuple.Item3);
      Console.WriteLine("Value (Item4)= " + tuple.Item4);
      if (tuple.Item1 == 100) {
         Console.WriteLine("Exists: Tuple Item 1 = " +tuple.Item1);
      }
      if (tuple.Item2 == 250) {
         Console.WriteLine("Exists: Tuple Item 2 = " +tuple.Item2);
      }
      if (tuple.Item3 == 270) {
         Console.WriteLine("Exists: Tuple Item 3 = " +tuple.Item3);
      }
      if (tuple.Item4 == 300) {
         Console.WriteLine("Exists: Tuple Item 4 = " +tuple.Item4);
      }
   }
}

आउटपुट

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

Value (Item1)= 100
Value (Item2)= 150
Value (Item3)= 300
Value (Item4)= 450
Exists: Tuple Item 1 = 100

  1. सी # में एक खाली टुपल में टुपल कैसे प्रारंभ करें?

    टपल को खाली टपल में इनिशियलाइज़ करने के लिए - Tuple<string, string> myTuple; यदि आप टपल में मानों की जांच करना चाहते हैं, कि यह शून्य है या नहीं - उदाहरण using System; namespace Demo {    class Program {       static void Main(string[] args) {       &n

  1. मैं एक गैर-शाब्दिक पायथन टपल कैसे बना सकता हूं?

    आप पहले एक सूची बना सकते हैं, फिर उस एकल मान को बदल सकते हैं जिसे आप बदलना चाहते हैं, फिर अंत में इसे एक टपल में परिवर्तित करें यदि आप एक गैर-शाब्दिक पायथन टपल बनाना चाहते हैं। उदाहरण के लिए, def create_non_literal_tuple(a, b, c):    x = [1] * a    x[c] = b    return tu

  1. पायथन में एक खाली टपल कैसे बनाएं?

    आप असाइनमेंट स्टेटमेंट में कोष्ठक में कोई तत्व नहीं देकर खाली टपल ऑब्जेक्ट बना सकते हैं। खाली टपल ऑब्जेक्ट भी बिना किसी तर्क के tuple() बिल्ट-इन फ़ंक्शन द्वारा बनाया जाता है >>> T1 = () >>> T1 () >>> T1 = tuple() >>> T1 ()