C# タプルは、C#.net バージョン 4.0 で導入されたデータ構造です。タプル データ構造は、さまざまなデータ型の要素を保持するように設計されています。タプルは、クラス メソッドから 1 つのパラメーターで複数の値を返すのに役立ちます。これには、Out パラメーター、クラス型または構造体の型、または動的戻り型よりも多くの利点があります。パラメーターが単一のデータセットに渡されるため、このデータセットにアクセスしてさまざまな操作を実行することが簡単になります。
タプルは 2 つの異なる方法で作成できます
タプルを作成するためのコンストラクターは Tuple
Tuple <T1> (T1)
例:
Tuple<int> Tuple_example = new Tuple<int>(27); Console.WriteLine(Tuple_example); Console.ReadLine();
出力:
Tuple <T1, T2> (T1, T2)
例:
Tuple<int, string, bool> tuple = new Tuple<int, string, bool>(1, "cat", true); Console.WriteLine(tuple.Item1); Console.WriteLine(tuple.Item2.ToString()); Console.ReadLine();
出力:
C# には、次のようにタプルを作成する静的な Create メソッドが用意されています
Create (T1);
例:
var Tuple_example = Tuple.Create(27); Console.WriteLine(Tuple_example); Console.ReadLine();
出力:
Create (T1, T2);
例:
var Tuple_example = Tuple.Create(1, "cat", true); Console.WriteLine(Tuple_example.Item1); Console.WriteLine(Tuple_example.Item2.ToString()); Console.ReadLine();
出力:
コンストラクターを使用する場合、タプルの作成時にすべての要素のデータ型を指定する必要があります。 Create メソッドは、上記のような面倒なコーディングを排除するのに役立ちます。
ジェネリック タプルは参照型であり、値がヒープに格納されることを意味するため、メモリとパフォーマンスの点で使用するとコストが高くなります。 C#7.0 では、汎用タプルに代わって新しく改良されたバージョンのタプルが導入され、それを ValueTuple と名付けました。 ValueTuple はヒープに保存されるため、簡単に取得できます。値タプルは、.NET Framework 4.7 または .NET library 2.0 に付属しています。タプル機能を個別にインストールするには、System.Value.Tuple という NuGet パッケージをインストールする必要があります。
ValueTuple に関する重要なポイント
例:
var Tuple_example = (1, "cat", true); Console.WriteLine(Tuple_example.Item1); Console.WriteLine(Tuple_example.Item2.ToString()); Console.ReadLine();
出力:
これは以下と同等です:
var Tuple_example = Tuple.Create(1, "cat", true); Console.WriteLine(Tuple_example.Item1); Console.WriteLine(Tuple_example.Item2.ToString()); Console.ReadLine();
例:
(int, string, bool) Tuple_example = (1, "cat", true); Console.WriteLine(Tuple_example.Item1); Console.WriteLine(Tuple_example.Item2.ToString()); Console.ReadLine();
出力:
例:
details.Item1; – returns 28 details.Item2; -- returns ”CBC”
例:
var detail = (28); --this is not a tuple var details = (28, “CBC”); -- this is a tuple
最初のステートメントでは、コンパイラーは 'detail' をタプルとして考慮せず、代わりに通常の 'var' 型とみなされます。
(int ID, String Firstname, string SecondName) details = (28, “CBC”, “C# Tuples”);
var nestedtuple_example = new Tuple <int, string, string, int, int, int, string, Tuple<double, int, string>> (5, “This”, “is”, 7,8,9, “number”, Tuple.Create (17.33, 29,”April”));
{ Var multiplication = tupleexample.Item1 * tupleexample.Item2; Console.WriteLine (“Multiplication is”, {0}, multiplication); }
メソッド TupleExampleMethod は次のようになります
TupleExampleMethod(new Tuple<int, int> (34,56));
public static Tuple <int, string> GetPerson() { return Tuple.Create (1, “abc”); }
Let’s create a program in Visual to understand how tuple works.
The values from both textboxes are taken into a tuple and the tuple is passed on to a method.
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApp1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnMultiply_Click(object sender, EventArgs e) { int value1 = Convert.ToInt32(txtVal1.Text); int value2 = Convert.ToInt32(TxtVal2.Text); CallMethod(new Tuple<int, int>(value1, value2)); } private void CallMethod(Tuple<int, int> tuple) { txtResult.Text = Convert.ToString(tuple.Item1 * tuple.Item2); Console.ReadLine(); } } }
The result is displayed in the third text box named as txtResult. End result looks like.
The tuple data structure is a reference type, which means the values are stored on the heap instead of stack. This makes usage of tuples and accessing them in the program an intensive CPU task. The only 8 elements in tuples property is one of the major drawbacks of tuples as nested tuples are more prone to induce ambiguity. Also accessing elements in tuple with Item
以上がC# タプルの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。