C# 튜플은 C#.net 버전 4.0에 도입된 데이터 구조입니다. 튜플 데이터 구조는 다양한 데이터 유형의 요소를 보유하도록 설계되었습니다. 튜플은 Out 매개변수, 클래스 또는 구조체 유형 또는 동적 반환 유형에 비해 많은 장점이 있는 단일 매개변수의 클래스 메서드에서 여러 값을 반환하는 데 도움이 됩니다. 매개변수가 단일 데이터 세트로 전달되므로 이 데이터 세트에 쉽게 액세스하고 다양한 작업을 수행할 수 있습니다.
튜플은 두 가지 방법으로 생성할 수 있습니다
튜플을 생성하기 위한 생성자는 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에서는 일반 튜플에 비해 새롭고 향상된 버전의 Tuple을 도입하고 이름을 ValueTuple로 지정했습니다. ValueTuple은 쉽게 검색할 수 있는 힙에 저장됩니다. 값 튜플은 .NET Framework 4.7 또는 .NET 라이브러리 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!