Question:You are creating a class named Age. You need to ensure that the Age class is written such that collections of Age objects can be sorted. Which code segment should you use?

 

A Public Class Age
Implements IComparable
Public Value As Integer
Public Function CompareTo(ByVal obj As Object) As Integer _ Implements IComparable.CompareTo
Try
Return Value.CompareTo((CType(obj, Age)).Value)
Catch Return -1
End Try
End Function
End Class 

B Public Class Age
Public Value As Integer
Public Function CompareTo(ByVal iValue As Integer) As Object Try
Return Value.CompareTo(iValue)
Catch
Throw New ArgumentException ("object not an Age")
End Try
End Function
End Class 

C Public Class Age
Implements IComparable
Public Value As Integer
Public Function CompareTo(ByVal obj As Object) As Integer _ Implements IComparable.CompareTo
If TypeOf obj Is Age Then
Dim _age As Age = CType(obj, Age)
Return Value.CompareTo(_age.Value)
End If
Throw New ArgumentException("object not an Age")
End Function
End Class 

D Public Class Age
Public Value As Integer
Public Function CompareTo(ByVal obj As Object) As Object If TypeOf obj Is Age Then
Dim _age As Age = CType(obj, Age)
Return Value.CompareTo(obj)
End If
Throw New ArgumentException("object not an Age")
End Function
End Class 

+ Answer
+ Report
Total Preview: 759

Copyright © 2024. Powered by Intellect Software Ltd