本文整理汇总了VB.NET中System.IEquatable<T>.Equals方法的典型用法代码示例。如果您正苦于以下问题:VB.NET IEquatable<T>.Equals方法的具体用法?VB.NET IEquatable<T>.Equals怎么用?VB.NET IEquatable<T>.Equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。
在下文中一共展示了IEquatable<T>.Equals方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: New
' 导入命名空间
Imports System.Collections.Generic
Imports System.Text.RegularExpressions
Public Class Person : Implements IEquatable(Of Person)
Private uniqueSsn As String
Private lName As String
Public Sub New(lastName As String, ssn As String)
If Regex.IsMatch(ssn, "\d{9}") Then
uniqueSsn = $"{ssn.Substring(0, 3)}-{ssn.Substring(3, 2)}-{ssn.Substring(5, 4)}"
ElseIf Regex.IsMatch(ssn, "\d{3}-\d{2}-\d{4}") Then
uniqueSsn = ssn
Else
Throw New FormatException("The social security number has an invalid format.")
End If
Me.LastName = lastName
End Sub
Public ReadOnly Property SSN As String
Get
Return Me.uniqueSsn
End Get
End Property
Public Property LastName As String
Get
Return Me.lName
End Get
Set
If String.IsNullOrEmpty(value) Then
Throw New ArgumentException("The last name cannot be null or empty.")
Else
lname = value
End If
End Set
End Property
Public Overloads Function Equals(other As Person) As Boolean _
Implements IEquatable(Of Person).Equals
If other Is Nothing Then Return False
If Me.uniqueSsn = other.uniqueSsn Then
Return True
Else
Return False
End If
End Function
Public Overrides Function Equals(obj As Object) As Boolean
If obj Is Nothing Then Return False
Dim personObj As Person = TryCast(obj, Person)
If personObj Is Nothing Then
Return False
Else
Return Equals(personObj)
End If
End Function
Public Overrides Function GetHashCode() As Integer
Return Me.SSN.GetHashCode()
End Function
Public Shared Operator = (person1 As Person, person2 As Person) As Boolean
If person1 Is Nothing OrElse person2 Is Nothing Then
Return Object.Equals(person1, person2)
End If
Return person1.Equals(person2)
End Operator
Public Shared Operator <> (person1 As Person, person2 As Person) As Boolean
If person1 Is Nothing OrElse person2 Is Nothing Then
Return Not Object.Equals(person1, person2)
End If
Return Not person1.Equals(person2)
End Operator
End Class
开发者ID:VB.NET开发者,项目名称:System,代码行数:80,代码来源:IEquatable.Equals
示例2: TestIEquatable
Module TestIEquatable
Public Sub Main()
' Create a Person object for each job applicant.
Dim applicant1 As New Person("Jones", "099-29-4999")
Dim applicant2 As New Person("Jones", "199-29-3999")
Dim applicant3 As New Person("Jones", "299-49-6999")
' Add applicants to a List object.
Dim applicants As New List(Of Person)
applicants.Add(applicant1)
applicants.Add(applicant2)
applicants.Add(applicant3)
' Create a Person object for the final candidate.
Dim candidate As New Person("Jones", "199-29-3999")
If applicants.Contains(candidate) Then
Console.WriteLine("Found {0} (SSN {1}).", _
candidate.LastName, candidate.SSN)
Else
Console.WriteLine("Applicant {0} not found.", candidate.SSN)
End If
' Call the shared inherited Equals(Object, Object) method.
' It will in turn call the IEquatable(Of T).Equals implementation.
Console.WriteLine("{0}({1}) already on file: {2}.", _
applicant2.LastName, _
applicant2.SSN, _
Person.Equals(applicant2, candidate))
End Sub
End Module
开发者ID:VB.NET开发者,项目名称:System,代码行数:31,代码来源:IEquatable.Equals 输出:
Found Jones (SSN 199-29-3999).
Jones(199-29-3999) already on file: True.
注:本文中的System.IEquatable<T>.Equals方法示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论