ホームページ  >  記事  >  バックエンド開発  >  C# のタプル クラス

C# のタプル クラス

王林
王林転載
2023-08-29 13:33:051469ブラウズ

C# 中的元组类

Tuple クラスは、クアッドと呼ばれる 4 つのタプルを表します。タプルは、一連の要素を含むデータ構造です。

これは、-

  • データセットへのアクセスを容易にするために使用されます。
  • データセットをより簡単に操作します。
  • は単一のデータセットを表します。
  • メソッドから複数の値を返す
  • メソッドに複数の値を渡す

4 つのプロパティがあります -

  • Item1 - オブジェクトの現在の Tuple 最初のコンポーネントの値を取得します。

  • Item2 - 現在の Tuple の値オブジェクトの 2 番目のコンポーネントを取得します。

  • Item3 - 現在の Tuple オブジェクトの 3 番目のコンポーネントの値を取得します。

  • Item4 - 現在の Tuple オブジェクトの 4 番目のコンポーネントの値を取得します。

  • # ul>

    Example

    次に、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

    Example

    次に、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 サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。