Comparer<T>.Default 属性

定义

返回由泛型参数指定的类型的默认排序顺序比较器。

public:
 static property System::Collections::Generic::Comparer<T> ^ Default { System::Collections::Generic::Comparer<T> ^ get(); };
public static System.Collections.Generic.Comparer<T> Default { get; }
static member Default : System.Collections.Generic.Comparer<'T>
Public Shared ReadOnly Property Default As Comparer(Of T)

属性值

继承 Comparer<T> 并作为 T 类型的排序顺序比较器的对象。

示例

以下示例演示如何使用 Default 属性获取执行默认比较的对象。 此示例是为 类提供的更大示例的一 Comparer<T> 部分。

// Get the default comparer that
// sorts first by the height.
Comparer<Box> defComp = Comparer<Box>.Default;

// Calling Boxes.Sort() with no parameter
// is the same as calling Boxs.Sort(defComp)
// because they are both using the default comparer.
Boxes.Sort();

foreach (Box bx in Boxes)
{
    Console.WriteLine("{0}\t{1}\t{2}",
        bx.Height.ToString(), bx.Length.ToString(),
        bx.Width.ToString());
}
' Get the default comparer that 
' sorts first by the height.
Dim defComp As Comparer(Of Box) = Comparer(Of Box).Default

' Calling Boxes.Sort() with no parameter
' is the same as calling Boxs.Sort(defComp)
' because they are both using the default comparer.
Boxes.Sort()

For Each bx As Box In Boxes
    Console.WriteLine("{0}" & vbTab & "{1}" & vbTab & "{2}", _
                      bx.Height.ToString(), _
                      bx.Length.ToString(), _
                      bx.Width.ToString())
Next bx

注解

Comparer<T>此属性返回的 使用 System.IComparable<T> C# 中的泛型接口 (IComparable<T> Visual IComparable(Of T) Basic) 来比较两个 对象。 如果 type T 未实现 System.IComparable<T> 泛型接口,则此属性返回 Comparer<T> 使用 接口的 System.IComparable

调用方说明

对于字符串比较, StringComparer 建议 Comparer<String> 在 Visual Basic) 中 (Comparer(Of String) 类。 类的属性 StringComparer 返回预定义实例,这些实例使用区分区域性和区分大小写的不同组合执行字符串比较。 区分大小写和区分区域性在同一 StringComparer 实例的成员之间是一致的。

有关特定于区域性的比较的详细信息,请参阅 System.Globalization 命名空间和 全球化和本地化

适用于

另请参阅