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>()
- Source:
- SortedSet.cs
- Source:
- SortedSet.cs
- Source:
- SortedSet.cs
初始化 SortedSet<T> 类的新实例。
public:
SortedSet();
public SortedSet ();
Public Sub New ()
适用于
SortedSet<T>(IComparer<T>)
- Source:
- SortedSet.cs
- Source:
- SortedSet.cs
- Source:
- 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>)
- Source:
- SortedSet.cs
- Source:
- SortedSet.cs
- Source:
- 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>)
- Source:
- SortedSet.cs
- Source:
- SortedSet.cs
- Source:
- 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)
- Source:
- SortedSet.cs
- Source:
- SortedSet.cs
- Source:
- 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> 对象关联的序列化流的源和目标。
- 属性
注解
在反序列化期间调用此构造函数,以重新构造通过流传输的对象。