Is a virtual method compulsory to override by its subclass?
|
If a method is not virtual (or abstract), it can't be overriden in the sub class. The only option then is to use the So in short, yes it needs to be virtual to override, but no you dont have to override it. If you don't, the base class version will be called instead. But if you do override it, even if you cast the object to it base class type, the derived version of the method will be called, unlike for hiding themethod with new. It's good to know the difference between overriding and hiding the method, since at first glance, and if you test it, it might look like it does the same thing, but will come back to bite you later when the program don't work as expected, and you have no idea why. |
|||||||||||
|
|
No, when you are using "virtual" keyword, it's up to you whether you want to override or not. When you use "abstract", you need to override the method in the derived class. For more information, please see:
|
|||||
|
|
No. It can be overriden by a sub class, but does not have to be. If you want to enforce overriding by subclasses, use |
|||||
|
No.
No.
You must implement Abstract method of parent class (if derived class is non-abstract)
NO, Because these two are just opposite words. Virtual means compiler does not know at compile time which method to be called. Static means , for sure , your compiler knows which method will be called.
Mark it with sealed keyword.
YES. That's why we cant explicitly mark abstract method virtual as well.
Off-course not! Overloading is having 2 methods with same name but which works on different set of input parameters.
When you are using polymorphism and you are not sure about the type of the object passes to your method until runtime, and you want your subclasses to have different behavior then mark the method as Virtual. e.g. You have
And you have Hierarchy of Minister classes -Ministers, CentralGOVTMinisters , StateGOVTMinisters , DistrictAuthorityMinisters etc. And you know that Whatever defined in Minister class for Corruption() method can be used by many derived class but for few ministers Corruption laws are different (they have supreme powers may be !) , so there you override the Corruption() and everywhere else your derived classes use the implementation of Corruption() in Minister class (base of all minister). |
|||
|
|
|
Yes, if a method is not marked virtual or abstract it cannot be overridden. The only exception is when declaring an interface method you don't need to use it because an interface method is virtual by definition. When you implement this interface you need to use virtual or abstract if you want to be able to derive from the class implementing the interface and be able to override the method. |
|||
|
|
|
It is not compulsory to override virtual methods that are not abstract. It is compulsory to implement abstract methods unless you also mark your class abstract. |
|||
|
|
|
No, it just means that you can override it, not that you have to. Abstract is the keyword if you want to make it mandatory for the subclass to implement it. |
|||
|
|
|
yes to override you need to write virtual keyword. or write keyword abstract method. |
|||
|
|

