SortedSet<T> 建構函式

定義

初始化 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>

用來比較物件的預設比較子。

例外狀況

comparernull

範例

下列範例會定義比較子 (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>

用來比較物件的預設比較子。

例外狀況

collectionnull

適用於

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> 物件關聯的序列化資料流的來源和目的端。

屬性

備註

還原串行化期間會呼叫這個建構函式,以重新建構透過數據流傳輸的物件。

適用於