Use MyBase to reference base class : MyBase « Class Module « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Class Module » MyBase 
6.19.1.Use MyBase to reference base class
Module Tester

   Sub Main()
      Dim circle As Circle

      circle = New Circle(37432.5' instantiate Circle

      Console.WriteLine("X coordinate is " & circle.X & vbCrLf & _
         "Y coordinate is " & circle.Y & vbCrLf & "Radius is " & _
         circle.Radius)

      circle.X = 2
      circle.Y = 2
      circle.Radius = 4.25

      Console.WriteLine("The new location and radius of circle are " & _
         vbCrLf & circle.ToString())

      Console.WriteLine("Diameter is " & _
         String.Format("{0:F}", circle.Diameter()))

      Console.WriteLine("Circumference is " & _
         String.Format("{0:F}", circle.Circumference()))

      Console.WriteLine("Area is " & String.Format("{0:F}", circle.Area()))

   End Sub

End Module


Public Class Circle
   Inherits Point 

   Private mRadius As Double

   Public Sub New()
      Radius = 0
   End Sub ' New

   Public Sub New(ByVal xValue As Integer, _
      ByVal yValue As Integer, ByVal radiusValue As Double)
      MyBase.New(xValue, yValue)
      Radius = radiusValue
   End Sub ' New

   Public Property Radius() As Double
      Get
         Return mRadius
      End Get

      Set(ByVal radiusValue As Double)

         If radiusValue > Then
            mRadius = radiusValue
         End If

      End Set

   End Property ' Radius

   Public Function Diameter() As Double
      Return mRadius * 2
   End Function ' Diameter

   Public Function Circumference() As Double
      Return Math.PI * Diameter()
   End Function ' Circumference

   Public Overridable Function Area() As Double
      Return Math.PI * mRadius ^ 2
   End Function ' Area

   Public Overrides Function ToString() As String
      Return "Center = " & MyBase.ToString() & _
         "; Radius = " & mRadius
   End Function ' ToString

End Class 


Public Class Point
   Private mX, mY As Integer
   Public Sub New()
      X = 0
      Y = 0
   End Sub ' New

   Public Sub New(ByVal xValue As Integer, _
      ByVal yValue As Integer)
      X = xValue
      Y = yValue
   End Sub ' New

   Public Property X() As Integer
      Get
         Return mX
      End Get

      Set(ByVal value As Integer)
         mX = value
      End Set

   End Property ' X

   Public Property Y() As Integer
      Get
         Return mY
      End Get

      Set(ByVal value As Integer)
         mY = value
      End Set

   End Property ' Y

   Public Overrides Function ToString() As String
      Return "[" & mX & ", " & mY & "]"
   End Function ' ToString

End Class
X coordinate is 37
Y coordinate is 43
Radius is 2.5
The new location and radius of circle are
Center = [2, 2]; Radius = 4.25
Diameter is 8.50
Circumference is 26.70
Area is 56.75
6.19.MyBase
6.19.1.Use MyBase to reference base class
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.