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?
|
|
|||||
|
|
|
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. |
||||||||||||||
|
|
|
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
End Class Public Class Inherited Inherits Base
End Class |
||
|
|
|
|
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. |
||
|
|
|
|
Overrides - Extending or creating alternate functionality for a method. Example: Add or extended the functionality of the Paint event of a window.
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.)
|
||||||||||
|
|
|
I think that 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 |
||||
|
|
|
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. |
||||
|
