Overrides and Shadows methods from base class : Overridable « 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 » Overridable 
6.42.2.Overrides and Shadows methods from base class
Option Strict On

 Imports System
 Imports Microsoft.VisualBasic

 Interface Printable
     Sub Read( )
     Sub Write( )
 End Interface

 Public Class Document : Implements Printable
     Public Sub New(ByVal s As String)
         Console.WriteLine("Creating document with: {0}", s)
     End Sub
     Public Overridable Sub Read( ) Implements Printable.Read
         Console.WriteLine("Document Virtual Read Method for Printable")
     End Sub
     Public Sub Write( ) Implements Printable.Write
         Console.WriteLine("Document Write Method for Printable")
     End Sub
 End Class

 Public Class Note : Inherits Document
     Public Sub New(ByVal s As String)
         MyBase.New(s)
         Console.WriteLine("Creating note with: {0}", s)
     End Sub
     Public Overrides Sub Read( )
         Console.WriteLine("Overriding the Read method for Note!")
     End Sub
     Public Shadows Sub Write( )
         Console.WriteLine("Implementing the Write method for Note!")
     End Sub
 End Class

 Class Tester
     Public Shared Sub Main( )
         Dim theNote As Document = New Note("Test Note")

         If TypeOf theNote Is Printable Then
             Dim isNote As Printable = theNote
             isNote.Read( )
             isNote.Write( )
         End If

         Console.WriteLine(vbCrLf)

         theNote.Read( )
         theNote.Write( )

         Console.WriteLine(vbCrLf)

         Dim note2 As New Note("Second Test")

         If TypeOf note2 Is Printable Then
             Dim isNote2 As Printable = note2
             isNote2.Read( )
             isNote2.Write( )
         End If
         Console.WriteLine(vbCrLf)

         note2.Read( )
         note2.Write( )
     End Sub
 End Class
Creating document with: Test Note
Creating note with: Test Note
Overriding the Read method for Note!
Document Write Method for Printable


Overriding the Read method for Note!
Document Write Method for Printable


Creating document with: Second Test
Creating note with: Second Test
Overriding the Read method for Note!
Document Write Method for Printable


Overriding the Read method for Note!
Implementing the Write method for Note!
6.42.Overridable
6.42.1.Overrides Overridable methods
6.42.2.Overrides and Shadows methods from base class
6.42.3.ToString method overrides
6.42.4.Derived Class and Overrides
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.