vote up 5 vote down star

Would some OO guru mind explaining the significance of these two keywords--what they do and for which context is one or the other preferable?

flag

1  
I added a list of links to a site called NinoPriore.com. I then removed them after the site had been compromised. Please don't go there. :) – Ray Booysen Jan 20 at 21:54

6 Answers

vote up 3 vote down check

I wouldn't consider Shadows to really be an OOP concept. Overrides indicates that you are providing new or additional functionality for a method/property etc that was declared in an ancestor class. Shadows really tricks the compiler into thinking that the parent method/property etc does not even exist.

I have no use for Shadows. Stick to Overrides. These types of helpful little "features" that VB has provided for years always end up causing you grief at some point.

link|flag
1  
-1. Shadows is a distinct and useful concept. It hides all base class methods with the same name and forces the use of the declared method. Overrides does not hide all base class methods. – waves Jan 20 at 22:44
As soon as you shadow an inherited method, the class can no longer be considered a true descendant of it's ancestor. IMHO this is not truly OOP and I question the application design that would lead down this path. In some cases it maybe is necessary, but typically not. – Jim Petkus Jan 21 at 1:51
I agree, however, the question is one concerning what they do and what context they are used in - it is not about whether or not anyone thinks they are OOP concepts. – waves Jan 24 at 22:58
1  
-1 The C# equivalent is 'new' so private new string Test() {...} does the same thing. Not just a vb.net 'problem' – Pondidum Sep 24 at 14:54
You deserve -2, first for disrespecting the very useful Shadows word then for not knowing the basic keywords of the language you're so proud of, 'insulting' other languages – Shimmy Nov 16 at 22:22
vote up 0 vote down

An Example of Shadowing: Lets assume that you want to use a function in a third party component but the function is protected. You can bypass this constraint with simple inheritance and exposing a shadowed function which basically calls its base function.

Public Class Base

Protected Sub Configure()
    ....
End Sub

End Class

Public Class Inherited Inherits Base

Public Shadows Sub Configure()
    MyBase.Configure()
End Sub

End Class

link|flag
vote up 3 vote down

Overrides is the more normal qualifier. If the child class redefines a base class function in this way, then regardless of how a child object is referenced (using either a base class or a child class reference) it is the child function that is called.

On the other hand, if the child class function Shadows the base class function, then a child object accessed via a base class reference will use that base class function, despite being a child object.
The child function definition is only used if the child object is accessed using a matching child reference.

link|flag
vote up 2 vote down

Overrides - Extending or creating alternate functionality for a method.

Example: Add or extended the functionality of the Paint event of a window.


    Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
        MyBase.OnPaint(e) ' retain the base class functionality
        'add code for extended functionality here
    End Sub

Shadows - Redefines an inherited method and forces its use for all classes instanced with that type. In other words the method is not overloaded but redefined and the base class methods are not available, thus forcing the use of the function declared in the class. Shadows preserves or retains the definition of the method such that it is not destroyed if the base class methods are modified.

Example: Force all "B" classes to use it's oddball Add definition such that if A class Add methods are modified it won't affect B's add. (Hides all base class "Add" methods. Won't be able to call A.Add(x, y, z) from an instance of B.)


    Public Class A
        Public Function Add(ByVal x As Integer, ByVal y As Integer) As Integer
            Return x + y
        End Function
        Public Function Add(ByVal x As Integer, ByVal y As Integer, ByVal z As Integer) As Integer
            Return x + y + z
        End Function
    End Class
    Public Class B
        Inherits A
        Public Shadows Function Add(ByVal x As Integer, ByVal y As Integer) As Integer
            Return x - y
        End Function
    End Class
link|flag
This goes against several OO principles, therefore I'd like to head a practical use case (the above isn't). This is what I mean by “novice”: it's basically an unnecessary mechanism that produces a bad, un-pluggable interface. The very antithesis of good OO design. – Konrad Rudolph Jan 20 at 22:54
In particular, your code won't work with polymorphic instances of A: Dim x As A = new B() : x.Add(1, 2). – Konrad Rudolph Jan 20 at 22:57
Hey now you're catching on... As that would be the point... – waves Jan 21 at 1:31
I agree with Jim, Chad and Konrad. Shadows is anti-OO. – chyne Jan 21 at 15:52
Fortunately for you this thread is about what they do and what context they are used in. – waves Jan 21 at 22:45
vote up -1 vote down

I think that Shadows was provided as a means to implement a poor-man's covariance in virtual functions, which VB otherwise doesn't have. However, this is just a shot in the dark.

Another explanation might be that many novice OOP programmers think they need something like that. Since VB was initially designed to provide a low barrier to new programmers, it might just be a hat tip in their direction. I distinctly remember using Shadows several times when I was still new to VB.NET. I haven't used it for at least five years, though.

link|flag
-1. Has nothing to do with novice programmers. – waves Jan 20 at 22:48
See my comment to your answer. – Konrad Rudolph Jan 20 at 22:55
vote up 0 vote down

I agree with Jim. I've never found a legitimate use for Shadows, either. Usually if I see it, I assume that sub-section of the code needs to be refactored a bit.

I suppose it is there so that you can shadow a method from an assembly in which you do not have control over the source code. In that case, refactoring the parent class would be impossible.

link|flag
-1. If shadows is being used correctly there should be no need for refactoring. – waves Jan 20 at 22:47
I would question an OO design which relies a lot on the use of shadowing methods. If a derived class really "is-a" more specific type of a base class, it should usually only be extending functionality and not removing functionality. – Chad Braun-Duin Jan 21 at 4:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.