SortedSet<T> コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SortedSet<T> クラスの新しいインスタンスを初期化します。
オーバーロード
SortedSet<T>() |
SortedSet<T> クラスの新しいインスタンスを初期化します。 |
SortedSet<T>(IComparer<T>) |
指定された比較子を使用する SortedSet<T> クラスの新しいインスタンスを初期化します。 |
SortedSet<T>(IEnumerable<T>) |
指定の列挙可能なコレクションからコピーされた要素を格納する、SortedSet<T> クラスの新しいインスタンスを初期化します。 |
SortedSet<T>(IEnumerable<T>, IComparer<T>) |
指定の列挙可能なコレクションからコピーされた要素を格納し、指定された比較子を使用する、SortedSet<T> クラスの新しいインスタンスを初期化します。 |
SortedSet<T>(SerializationInfo, StreamingContext) |
古い.
シリアル化したデータを格納する、SortedSet<T> クラスの新しいインスタンスを初期化します。 |
注釈
このコンストラクターは操作です O(1)
。
SortedSet<T>()
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
SortedSet<T> クラスの新しいインスタンスを初期化します。
public:
SortedSet();
public SortedSet ();
Public Sub New ()
適用対象
SortedSet<T>(IComparer<T>)
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
指定された比較子を使用する SortedSet<T> クラスの新しいインスタンスを初期化します。
public:
SortedSet(System::Collections::Generic::IComparer<T> ^ comparer);
public SortedSet (System.Collections.Generic.IComparer<T> comparer);
public SortedSet (System.Collections.Generic.IComparer<T>? comparer);
new System.Collections.Generic.SortedSet<'T> : System.Collections.Generic.IComparer<'T> -> System.Collections.Generic.SortedSet<'T>
Public Sub New (comparer As IComparer(Of T))
パラメーター
- comparer
- IComparer<T>
オブジェクトの比較に使用する既定の比較子。
例外
comparer
が null
です。
例
次の例では、ファイル名を拡張子で並べ替える並べ替えられたセットを構築するために使用される比較子 (ByFileExtension
) を定義します。 このコード例は、SortedSet<T> クラスのために提供されている大規模な例の一部です。
// Create a sorted set using the ByFileExtension comparer.
var mediaFiles1 = new SortedSet<string>(new ByFileExtension());
' Create a sorted set using the ByFileExtension comparer.
Dim mediaFiles1 As New SortedSet(Of String)(New ByFileExtension)
// Defines a comparer to create a sorted set
// that is sorted by the file extensions.
public class ByFileExtension : IComparer<string>
{
string xExt, yExt;
CaseInsensitiveComparer caseiComp = new CaseInsensitiveComparer();
public int Compare(string x, string y)
{
// Parse the extension from the file name.
xExt = x.Substring(x.LastIndexOf(".") + 1);
yExt = y.Substring(y.LastIndexOf(".") + 1);
// Compare the file extensions.
int vExt = caseiComp.Compare(xExt, yExt);
if (vExt != 0)
{
return vExt;
}
else
{
// The extension is the same,
// so compare the filenames.
return caseiComp.Compare(x, y);
}
}
}
' Defines a comparer to create a sorted set
' that is sorted by the file extensions.
Public Class ByFileExtension
Implements IComparer(Of String)
Dim xExt, yExt As String
Dim caseiComp As CaseInsensitiveComparer = _
New CaseInsensitiveComparer
Public Function Compare(x As String, y As String) _
As Integer Implements IComparer(Of String).Compare
' Parse the extension from the file name.
xExt = x.Substring(x.LastIndexOf(".") + 1)
yExt = y.Substring(y.LastIndexOf(".") + 1)
' Compare the file extensions.
Dim vExt As Integer = caseiComp.Compare(xExt, yExt)
If vExt <> 0 Then
Return vExt
Else
' The extension is the same,
' so compare the filenames.
Return caseiComp.Compare(x, y)
End If
End Function
End Class
適用対象
SortedSet<T>(IEnumerable<T>)
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
指定の列挙可能なコレクションからコピーされた要素を格納する、SortedSet<T> クラスの新しいインスタンスを初期化します。
public:
SortedSet(System::Collections::Generic::IEnumerable<T> ^ collection);
public SortedSet (System.Collections.Generic.IEnumerable<T> collection);
new System.Collections.Generic.SortedSet<'T> : seq<'T> -> System.Collections.Generic.SortedSet<'T>
Public Sub New (collection As IEnumerable(Of T))
パラメーター
- collection
- IEnumerable<T>
コピーする列挙可能なコレクション。
注釈
列挙可能なコレクション内の重複する要素は、 クラスの SortedSet<T> 新しいインスタンスにコピーされず、例外はスローされません。
このコンストラクターは操作です O(n log n)
。ここで n
、 は パラメーター内の要素の数です collection
。
適用対象
SortedSet<T>(IEnumerable<T>, IComparer<T>)
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
指定の列挙可能なコレクションからコピーされた要素を格納し、指定された比較子を使用する、SortedSet<T> クラスの新しいインスタンスを初期化します。
public:
SortedSet(System::Collections::Generic::IEnumerable<T> ^ collection, System::Collections::Generic::IComparer<T> ^ comparer);
public SortedSet (System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IComparer<T> comparer);
public SortedSet (System.Collections.Generic.IEnumerable<T> collection, System.Collections.Generic.IComparer<T>? comparer);
new System.Collections.Generic.SortedSet<'T> : seq<'T> * System.Collections.Generic.IComparer<'T> -> System.Collections.Generic.SortedSet<'T>
Public Sub New (collection As IEnumerable(Of T), comparer As IComparer(Of T))
パラメーター
- collection
- IEnumerable<T>
コピーする列挙可能なコレクション。
- comparer
- IComparer<T>
オブジェクトの比較に使用する既定の比較子。
例外
collection
が null
です。
適用対象
SortedSet<T>(SerializationInfo, StreamingContext)
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
- ソース:
- SortedSet.cs
注意事項
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
シリアル化したデータを格納する、SortedSet<T> クラスの新しいインスタンスを初期化します。
protected:
SortedSet(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected SortedSet (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected SortedSet (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Collections.Generic.SortedSet<'T> : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Collections.Generic.SortedSet<'T>
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Collections.Generic.SortedSet<'T> : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Collections.Generic.SortedSet<'T>
Protected Sub New (info As SerializationInfo, context As StreamingContext)
パラメーター
- info
- SerializationInfo
SortedSet<T> オブジェクトをシリアル化するために必要な情報を格納しているオブジェクト。
- context
- StreamingContext
SortedSet<T> オブジェクトに関連付けられているシリアル化ストリームの転送元および転送先を格納する構造体。
- 属性
注釈
このコンストラクターは、ストリーム経由で送信されるオブジェクトを再構成するために、逆シリアル化中に呼び出されます。
適用対象
.NET