ライブ環境でテストする
ウォーターマークなしで本番環境でテストしてください。
必要な場所でいつでも動作します。
ペアは、2つの関連する値を保持するシンプルなデータ構造です。 それは、2つの異なるデータの断片をまとめる便利な方法を提供します。 メソッドが2つの値を返す必要がある場合や、キーと値の関連を扱う際に、ペアはよく使用されます。
C#では、開発者はしばしばタプルを使用します(Tuple<T1, T2>
)値のペアリング用。 ただし、タプルは不変であり、その要素は Item1 や Item2 のようなプロパティを通じてアクセスされますが、これを多用するとコードの可読性が低下する可能性があります。 これはカスタムPairクラスが役立つところです。
もし2つの関連するオブジェクトを保持する構造が必要であり、データ隠蔽が優先事項でない場合、コード内でPairクラスを利用することができます。 ペアクラスは、そのオブジェクトリファレンスをカプセル化しません。 代わりに、公開クラスフィールドとしてすべての呼び出しコードに直接公開します。
この設計の選択により、カプセル化のオーバーヘッドなしで、含まれているオブジェクトに簡単にアクセスできます。 また、記事の最後では、どのようにしてPDF生成のためのIronPDFからIron Softwareの概要PDFドキュメントを生成するために使用できます。
C# 7.0ではタプル構文が改善され、タプルの使用がさらに簡単になりました。 タプルを宣言して初期化する方法は次のとおりです:
// Tuple declaration
var person = (name: "John", age: 30);
// Accessing tuple elements
Console.WriteLine($"Name: {person.name}, Age: {person.age}");
// Tuple deconstruction
var (name, age) = person;
Console.WriteLine($"Name: {name}, Age: {age}");
// Tuple declaration
var person = (name: "John", age: 30);
// Accessing tuple elements
Console.WriteLine($"Name: {person.name}, Age: {person.age}");
// Tuple deconstruction
var (name, age) = person;
Console.WriteLine($"Name: {name}, Age: {age}");
' Tuple declaration
Dim person = (name:= "John", age:= 30)
' Accessing tuple elements
Console.WriteLine($"Name: {person.name}, Age: {person.age}")
' Tuple deconstruction
'INSTANT VB TODO TASK: VB has no equivalent to C# deconstruction declarations:
var(name, age) = person
Console.WriteLine($"Name: {name}, Age: {age}")
タプルを使用すると、カスタムクラスや構造体を定義する必要なく、簡潔な構文で複雑なデータ構造を表現できます。
タプルは軽量なデータ構造であり、一時的または中間のデータを保存する必要があるシナリオに適しています。
タプル構文を使用すると、タプル要素に暗黙的に名前を付けることができ、コードの可読性が向上し、コメントの必要性が減少します。
public (int, int) Divide(int dividend, int divisor)
{
int quotient = dividend / divisor;
int remainder = dividend % divisor;
return (quotient, remainder);
}
var result = Divide(10, 3);
Console.WriteLine($"Quotient: {result.Item1}, Remainder: {result.Item2}");
public (int, int) Divide(int dividend, int divisor)
{
int quotient = dividend / divisor;
int remainder = dividend % divisor;
return (quotient, remainder);
}
var result = Divide(10, 3);
Console.WriteLine($"Quotient: {result.Item1}, Remainder: {result.Item2}");
Public Function Divide(ByVal dividend As Integer, ByVal divisor As Integer) As (Integer, Integer)
Dim quotient As Integer = dividend \ divisor
Dim remainder As Integer = dividend Mod divisor
Return (quotient, remainder)
End Function
Private result = Divide(10, 3)
Console.WriteLine($"Quotient: {result.Item1}, Remainder: {result.Item2}")
public (string, string) GetNameAndSurname()
{
// Retrieve name and surname from a data source
return ("John", "Doe");
}
var (name, surname) = GetNameAndSurname();
Console.WriteLine($"Name: {name}, Surname: {surname}");
public (string, string) GetNameAndSurname()
{
// Retrieve name and surname from a data source
return ("John", "Doe");
}
var (name, surname) = GetNameAndSurname();
Console.WriteLine($"Name: {name}, Surname: {surname}");
Public Function GetNameAndSurname() As (String, String)
' Retrieve name and surname from a data source
Return ("John", "Doe")
End Function
'INSTANT VB TODO TASK: VB has no equivalent to C# deconstruction declarations:
var(name, surname) = GetNameAndSurname()
Console.WriteLine($"Name: {name}, Surname: {surname}")
var point = (x: 10, y: 20);
var color = (r: 255, g: 0, b: 0);
var person = (name: "Alice", age: 25);
var point = (x: 10, y: 20);
var color = (r: 255, g: 0, b: 0);
var person = (name: "Alice", age: 25);
Dim point = (x:= 10, y:= 20)
Dim color = (r:= 255, g:= 0, b:= 0)
Dim person = (name:= "Alice", age:= 25)
C# 7.0 のタプルには多くの利点がありますが、いくつかの制限および考慮事項がありますのでご注意ください:
public class Pair<T1, T2>
{
public T1 First { get; set; }
public T2 Second { get; set; }
public Pair(T1 first, T2 second)
{
First = first;
Second = second;
}
}
public class Pair<T1, T2>
{
public T1 First { get; set; }
public T2 Second { get; set; }
public Pair(T1 first, T2 second)
{
First = first;
Second = second;
}
}
Public Class Pair(Of T1, T2)
Public Property First() As T1
Public Property Second() As T2
Public Sub New(ByVal first As T1, ByVal second As T2)
Me.First = first
Me.Second = second
End Sub
End Class
ここでは、型は使用時に定義され、2つのプロパティはパブリック・プロパティとして公開されます。
ペアクラスは、2つの関連するオブジェクトを一緒に格納するための簡単な方法を提供します。よく使用される例としては、キーと値のペア、名前と年齢のペア、カテゴリ識別子とカテゴリ名のペアなどがあります。
ペアオブジェクトを作成する方法:
Pair<String, Integer> pair = new Pair<>("名前", 25);
この例では、キーは文字列「名前」で値は整数25です。
ペア内の値にアクセスするには、getKey()
およびgetValue()
メソッドを使用します:
String key = pair.getKey(); // "名前"
Integer value = pair.getValue(); // 25
ペアクラスは特に、データベースやリストからのデータの一時的な格納や転送が必要な場合に有用です。
それでは、Pairクラスが有益となるいくつかの一般的な使用例を以下に探ってみましょう。
Pair<int, int> coordinates = new Pair<int, int>(10, 20); // new instance
Console.WriteLine($"X: {coordinates.First}, Y: {coordinates.Second}");
Pair<int, int> coordinates = new Pair<int, int>(10, 20); // new instance
Console.WriteLine($"X: {coordinates.First}, Y: {coordinates.Second}");
Dim coordinates As New Pair(Of Integer, Integer)(10, 20) ' new instance
Console.WriteLine($"X: {coordinates.First}, Y: {coordinates.Second}")
public Pair<int, int> Divide(int dividend, int divisor)
{
int quotient = dividend / divisor;
int remainder = dividend % divisor;
return new Pair<int, int>(quotient, remainder);
}
Pair<int, int> result = Divide(10, 3);
Console.WriteLine($"Quotient: {result.First}, Remainder: {result.Second}");
public Pair<int, int> Divide(int dividend, int divisor)
{
int quotient = dividend / divisor;
int remainder = dividend % divisor;
return new Pair<int, int>(quotient, remainder);
}
Pair<int, int> result = Divide(10, 3);
Console.WriteLine($"Quotient: {result.First}, Remainder: {result.Second}");
Public Function Divide(ByVal dividend As Integer, ByVal divisor As Integer) As Pair(Of Integer, Integer)
Dim quotient As Integer = dividend \ divisor
Dim remainder As Integer = dividend Mod divisor
Return New Pair(Of Integer, Integer)(quotient, remainder)
End Function
Private result As Pair(Of Integer, Integer) = Divide(10, 3)
Console.WriteLine($"Quotient: {result.First}, Remainder: {result.Second}")
Pair<string, int> keyValue = new Pair<string, int>("Age", 30);
Console.WriteLine($"Key: {keyValue.First}, Value: {keyValue.Second}");
Pair<string, int> keyValue = new Pair<string, int>("Age", 30);
Console.WriteLine($"Key: {keyValue.First}, Value: {keyValue.Second}");
Dim keyValue As New Pair(Of String, Integer)("Age", 30)
Console.WriteLine($"Key: {keyValue.First}, Value: {keyValue.Second}")
キーと値のペアは、データを関連付けるためのシンプルで効率的な方法を提供します。 C# では、キーと値のペアを扱う主要なツールは Dictionary<TKey, TValue>
クラスであり、多用途で強力なコレクション型である。
キーと値のペアは、ユニークなキーを値に関連付けるデータ構造です。 この関連により、データの一意識別子に基づいた効率的な取得および操作が可能になります。 C#では、キーと値のペアは一般的にキャッシュ、構成管理、データストレージなどのタスクに使用されます。
Dictionary<TKey, TValue>
C# の Dictionary<TKey, TValue>
クラスは、キーと値のペアを格納するジェネリックコレクションです。 それはキーに基づく高速検索を提供し、連想データの管理に広く使用されています。
Dictionary<string, int> ages = new Dictionary<string, int>();
ages["Alice"] = 30;
ages["Bob"] = 35;
ages["Charlie"] = 25;
Dictionary<string, int> ages = new Dictionary<string, int>();
ages["Alice"] = 30;
ages["Bob"] = 35;
ages["Charlie"] = 25;
Dim ages As New Dictionary(Of String, Integer)()
ages("Alice") = 30
ages("Bob") = 35
ages("Charlie") = 25
Console.WriteLine($"Alice's age: {ages["Alice"]}");
Console.WriteLine($"Alice's age: {ages["Alice"]}");
Console.WriteLine($"Alice's age: {ages("Alice")}")
foreach (var pair in ages)
{
Console.WriteLine($"Name: {pair.Key}, Age: {pair.Value}");
}
foreach (var pair in ages)
{
Console.WriteLine($"Name: {pair.Key}, Age: {pair.Value}");
}
For Each pair In ages
Console.WriteLine($"Name: {pair.Key}, Age: {pair.Value}")
Next pair
if (ages.TryGetValue("David", out int age))
{
Console.WriteLine($"David's age: {age}");
}
else
{
Console.WriteLine("David's age is not available.");
}
if (ages.TryGetValue("David", out int age))
{
Console.WriteLine($"David's age: {age}");
}
else
{
Console.WriteLine("David's age is not available.");
}
Dim age As Integer
If ages.TryGetValue("David", age) Then
Console.WriteLine($"David's age: {age}")
Else
Console.WriteLine("David's age is not available.")
End If
ages.Remove("Charlie");
ages.Remove("Charlie");
ages.Remove("Charlie")
var colors = new Dictionary<string, string>
{
{ "red", "#FF0000" },
{ "green", "#00FF00" },
{ "blue", "#0000FF" }
};
var colors = new Dictionary<string, string>
{
{ "red", "#FF0000" },
{ "green", "#00FF00" },
{ "blue", "#0000FF" }
};
Dim colors = New Dictionary(Of String, String) From {
{"red", "#FF0000"},
{"green", "#00FF00"},
{"blue", "#0000FF"}
}
Dictionary<TKey, TValue>
は強力なツールですが、アプリケーションの特定の要求に応じて、代替アプローチや考慮事項が異なります。
アプリケーションが複数のスレッドから辞書にスレッドセーフにアクセスする必要がある場合は、
ConcurrentDictionary<TKey, TValue>` の使用を検討してください。名前空間の
ImmutableDictionary<TKey, TValue>` は、不変なキーと値のコレクションを提供する。IronPDF by Iron ソフトウェア製品は、PDFドキュメントを生成するための優れたライブラリです。 その使いやすさと効率性は他の追随を許しません。
IronPDFはNuGetパッケージマネージャーからインストールできます。
Install-Package IronPdf
Visual Studio から次のように:
タプル例を使用してドキュメントを生成するには、次のコードを使用できます:
namespace IronPatterns;
class Program
{
static void Main()
{
Console.WriteLine("-----------Iron Software-------------");
var renderer = new ChromePdfRenderer(); // var pattern
var content = " <h1> Iron Software is Awesome </h1> Made with IronPDF!";
content += "<h2>Demo C# Pair with Tuples</h2>";
var result = Divide(10, 3);
Console.WriteLine($"Quotient: {result.Item1}, Remainder: {result.Item2}");
content += $"<p>When we divide 10, 3 </p>";
content += $"<p>Quotient: {result.Item1}, Remainder: {result.Item2}</p>";
var pdf = renderer.RenderHtmlAsPdf(content);
pdf.SaveAs("output.pdf"); // Saves PDF
}
public static (int, int) Divide(int dividend, int divisor)
{
// var count;
int quotient = dividend / divisor;
int remainder = dividend % divisor;
return (quotient, remainder);
}
}
namespace IronPatterns;
class Program
{
static void Main()
{
Console.WriteLine("-----------Iron Software-------------");
var renderer = new ChromePdfRenderer(); // var pattern
var content = " <h1> Iron Software is Awesome </h1> Made with IronPDF!";
content += "<h2>Demo C# Pair with Tuples</h2>";
var result = Divide(10, 3);
Console.WriteLine($"Quotient: {result.Item1}, Remainder: {result.Item2}");
content += $"<p>When we divide 10, 3 </p>";
content += $"<p>Quotient: {result.Item1}, Remainder: {result.Item2}</p>";
var pdf = renderer.RenderHtmlAsPdf(content);
pdf.SaveAs("output.pdf"); // Saves PDF
}
public static (int, int) Divide(int dividend, int divisor)
{
// var count;
int quotient = dividend / divisor;
int remainder = dividend % divisor;
return (quotient, remainder);
}
}
Namespace IronPatterns
Friend Class Program
Shared Sub Main()
Console.WriteLine("-----------Iron Software-------------")
Dim renderer = New ChromePdfRenderer() ' var pattern
Dim content = " <h1> Iron Software is Awesome </h1> Made with IronPDF!"
content &= "<h2>Demo C# Pair with Tuples</h2>"
Dim result = Divide(10, 3)
Console.WriteLine($"Quotient: {result.Item1}, Remainder: {result.Item2}")
content &= $"<p>When we divide 10, 3 </p>"
content &= $"<p>Quotient: {result.Item1}, Remainder: {result.Item2}</p>"
Dim pdf = renderer.RenderHtmlAsPdf(content)
pdf.SaveAs("output.pdf") ' Saves PDF
End Sub
Public Shared Function Divide(ByVal dividend As Integer, ByVal divisor As Integer) As (Integer, Integer)
' var count;
Dim quotient As Integer = dividend \ divisor
Dim remainder As Integer = dividend Mod divisor
Return (quotient, remainder)
End Function
End Class
End Namespace
あなたのIronPDF トライアルライセンスそして、appsettings.json
にライセンスを配置します。
"IronPDF.LicenseKey": "<Your Key>"
"IronPDF.LicenseKey": "<Your Key>"
'INSTANT VB TODO TASK: The following line uses invalid syntax:
'"IronPDF.LicenseKey": "<Your Key>"
この記事では、ペアの概念とC#におけるPair
クラスの重要性について探求しました。 カスタムクラス Pair
の簡単な実装と、日常のプログラミング作業における汎用性と有用性を示す様々な使用例を提供しました。
座標を扱う場合、メソッドから複数の値を返す場合、またはキーと値の関連を保存する場合、Pairクラスはプログラミングスキルにとって貴重な追加要素となるでしょう。
これに加えてIronPDFライブラリの機能は、アプリケーションの必要に応じてPDFドキュメントをその場で生成する開発者にとって、持っていると便利なスキルセットです。
9つの .NET API製品 オフィス文書用