The following shows a simple illustration of inheritance. Notice the use of Access Modifiers discussed previously.
Public Class Automobile
Public wheelCount as Integer
End Class
Public Class SportsCar
Inherits Automobile
Public turboCharged as Boolean
End Class
Public Class HotRod
Inherits SportsCar
Public parachuteEnabled as Boolean
End Class
No comments:
Post a Comment