Polymorphism is a must in VB.NET

Polymorphism is a must in VB.NET

This tip was submitted to the VS.NET Info Center by member William T. Please let other users know how useful it is by rating it below. Do you have a tip or code of your own you'd like to share? Submit it here.


There

    Requires Free Membership to View

    When you register, you'll begin receiving targeted emails from my team of award-winning writers. Our goal is to provide a unique online resource for developers, architects and development managers tasked with building and maintaining enterprise applications using Visual Basic, C# and the Microsoft .NET platform.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchWinDevelopment.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchWinDevelopment.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

was a recent tip published here that was titled "Polymorphism can lead to head scratching in VB.NET.

I would like to stress that VB.NET is a fully compliant object-oriented language, and thus OOP should be practiced at all times within .NET development, albeit with careful planning and design in order not to lose focus.

In the tip mentioned above, the author stressed that polymorphism can lead to nightmares and headaches. I would like to stress that NOT implementing polymorphism can lead to worse nightmares and headaches, in terms of maintainance and extensibility.

The above problem, as stated by the tip author, can essentially be solved with the VB.NET keyword: MyClass.

I will replicate the exact same codes as first published in the original tip and I will put in the keyword in the appropriate place.

Let's see some code below:

    Class Parent
        Public Overridable Sub p1()
            Console.Write("Parent.p1")
        End Sub

        Public Sub p2()
            MyClass.p1()

'Please note the MyClass implementation here. This will essentially call the 
base class wherein the keyword MyClass appears.

        End Sub
    End Class

    Class Child
        Inherits Parent

        Public Overrides Sub p1()
            Console.Write("Child.p1")
            MyBase.p2()
        End Sub
    End Class

    Sub Main()

        Dim p As Parent
        Dim c As Child

        p = New Parent()
        p.p1() 'OK
        p.p2() 'OK

        p = New Child()
        p.p1() 'OK
        p.p2() 'OK

        c = New Child()
        c.p1() 'OK
        c.p2() 'OK

    End Sub

This was first published in October 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.