Tuple
これは、-
4 つのプロパティがあります -
Item1 - オブジェクトの現在の Tuple
Item2 - 現在の Tuple
Item3 - 現在の Tuple
Item4 - 現在の Tuple
次に、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 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); } } }
これにより、次の出力が生成されます-
rreeee以上がC# のタプル クラスの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。