本文整理汇总了VB.NET中System.Collections.Generic.EqualityComparer<T>类的典型用法代码示例。如果您正苦于以下问题:VB.NET EqualityComparer<T>类的具体用法?VB.NET EqualityComparer<T>怎么用?VB.NET EqualityComparer<T>使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了EqualityComparer<T>类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Program
'Imports System.Collections
Imports System.Collections.Generic
Module Program
Dim boxes As Dictionary(Of Box, [String])
Public Sub Main(ByVal args As String())
Dim boxDim As New BoxSameDimensions()
boxes = New Dictionary(Of Box, String)(boxDim)
Console.WriteLine("Boxes equality by dimensions:")
Dim redBox As New Box(8, 4, 8)
Dim greenBox As New Box(8, 6, 8)
Dim blueBox As New Box(8, 4, 8)
Dim yellowBox As New Box(8, 8, 8)
AddBox(redBox, "red")
AddBox(greenBox, "green")
AddBox(blueBox, "blue")
AddBox(yellowBox, "yellow")
Console.WriteLine()
Console.WriteLine("Boxes equality by volume:")
Dim boxVolume As New BoxSameVolume()
boxes = New Dictionary(Of Box, String)(boxVolume)
Dim pinkBox As New Box(8, 4, 8)
Dim orangeBox As New Box(8, 6, 8)
Dim purpleBox As New Box(4, 8, 8)
Dim brownBox As New Box(8, 8, 4)
AddBox(pinkBox, "pink")
AddBox(orangeBox, "orange")
AddBox(purpleBox, "purple")
AddBox(brownBox, "brown")
End Sub
Public Sub AddBox(ByVal bx As Box, ByVal name As String)
Try
boxes.Add(bx, name)
Console.WriteLine("Added {0}, Count = {1}, HashCode = {2}", _
name, boxes.Count.ToString(), bx.GetHashCode())
Catch generatedExceptionName As ArgumentException
Console.WriteLine("A box equal to {0} is already in the collection.", name)
End Try
End Sub
End Module
Public Class Box
Public Sub New(ByVal h As Integer, ByVal l As Integer, ByVal w As Integer)
Me.Height = h
Me.Length = l
Me.Width = w
End Sub
Private _Height As Integer
Public Property Height() As Integer
Get
Return _Height
End Get
Set(ByVal value As Integer)
_Height = value
End Set
End Property
Private _Length As Integer
Public Property Length() As Integer
Get
Return _Length
End Get
Set(ByVal value As Integer)
_Length = value
End Set
End Property
Private _Width As Integer
Public Property Width() As Integer
Get
Return _Width
End Get
Set(ByVal value As Integer)
_Width = value
End Set
End Property
End Class
Class BoxSameDimensions : Inherits EqualityComparer(Of Box)
Public Overloads Overrides Function Equals(ByVal b1 As Box, _
ByVal b2 As Box) As Boolean
If b1 Is Nothing AndAlso b2 Is Nothing Then
Return True
Else If b1 Is Nothing OrElse b2 Is Nothing Then
Return False
End If
Return (b1.Height = b2.Height AndAlso b1.Length = b2.Length _
AndAlso b1.Width = b2.Width)
End Function
Public Overloads Overrides Function GetHashCode(ByVal bx As Box) As Integer
Dim hCode As Integer = bx.Height Xor bx.Length Xor bx.Width
Return hCode.GetHashCode()
End Function
End Class
Class BoxSameVolume : Inherits EqualityComparer(Of Box)
Public Overloads Overrides Function Equals(ByVal b1 As Box, _
ByVal b2 As Box) As Boolean
If b1 Is Nothing AndAlso b2 Is Nothing Then
Return True
Else If b1 Is Nothing OrElse b2 Is Nothing Then
Return False
End If
Return (b1.Height * b1.Width * b1.Length = _
b2.Height * b2.Width * b2.Length)
End Function
Public Overloads Overrides Function GetHashCode(ByVal bx As Box) As Integer
Dim hCode As Integer = bx.Height * bx.Length * bx.Width
Return hCode.GetHashCode()
End Function
End Class
输出:
* Boxes equality by dimensions: Added red, Count = 1, HashCode = 46104728 Added green, Count = 2, HashCode = 12289376 A box equal to blue is already in the collection. Added yellow, Count = 3, HashCode = 43495525 Boxes equality by volume: Added pink, Count = 1, HashCode = 55915408 Added orange, Count = 2, HashCode = 33476626 A box equal to purple is already in the collection. A box equal to brown is already in the collection. *