**_
The following example defines a Point type derived from the Object class and overrides many of the virtual methods of the Object class. In addition, the example shows how to call many of the static and instance methods of the Object class.
To browse the .NET Framework source code for this type, see the Reference Source.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)_
//* is:open label:"Assembly: mscorlib"if ' The Point class is derived from System.Object. Class Point Public x, y As Integer Public Sub New(ByVal x As Integer, ByVal y As Integer) Me.x = x Me.y = y End Sub Public Overrides Function Equals(ByVal obj As Object) As Boolean ' If Me and obj do not refer to the same type, then they are not equal. Dim objType As Type = obj.GetType() Dim meType As Type = Me.GetType() If Not objType.Equals(meType) Then Return False End If ' Return true if x and y fields match. Dim other As Point = CType(obj, Point) Return Me.x = other.x AndAlso Me.y = other.y End Function ' Return the XOR of the x and y fields. Public Overrides Function GetHashCode() As Integer Return (x << 1) XOr y End Function ' Return the point's value as a string. Public Overrides Function ToString() As String Return String.Format("({0}, {1})", x, y) End Function ' Return a copy of this point object by making a simple field copy. Public Function Copy() As Point Return CType(Me.MemberwiseClone(), Point) End Function End Class NotInheritable Public Class App Shared Sub Main() ' Construct a Point object. Dim p1 As New Point(1, 2) ' Make another Point object that is a copy of the first. Dim p2 As Point = p1.Copy() ' Make another variable that references the first Point object. Dim p3 As Point = p1 ' The line below displays false because p1 and p2 refer to two different objects. Console.WriteLine([Object].ReferenceEquals(p1, p2)) ' The line below displays true because p1 and p2 refer to two different objects ' that have the same value. Console.WriteLine([Object].Equals(p1, p2)) ' The line below displays true because p1 and p3 refer to one object. Console.WriteLine([Object].ReferenceEquals(p1, p3)) ' The line below displays: p1's value is: (1, 2) Console.WriteLine("p1's value is: {0}", p1.ToString()) End Sub End Class ' This example produces the following output: ' ' False ' True ' True ' p1's value is: (1, 2) }
List view
0 issues of 7 selected
- Status: Open.#195 In GistIcon/md.md;
- Status: Open (in progress).GistIcon/md.mdnumber 166#166 In GistIcon/md.md;
- Status: Open (in progress).GistIcon/md.mdnumber 136#136 In GistIcon/md.md;
- Status: Open (in progress).GistIcon/md.mdnumber 99#99 In GistIcon/md.md;
- Status: Open (in progress).GistIcon/md.mdnumber 93#93 In GistIcon/md.md;
- Status: Open (in progress).GistIcon/md.mdnumber 68#68 In GistIcon/md.md;
- Status: Open.#51 In GistIcon/md.md;