Which is the more correct approach? In which cases is it recommended to use virtual or abstract?
feedback
|
closed as not constructive by casperOne♦ Jan 24 at 21:15
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
An abstract function can have no functionality. You're basically saying, any child class MUST give their own version of this method, however it's too general to even try to implement in the parent class. A virtual function, is basically saying look, here's the functionality that may or may not be good enough for the child class. So if it is good enough, use this method, if not, then override me, and provide your own functionality. | |||||||||
feedback
|
|
An abstract function has no implemention and it can only be declared on an abstract class. This forces the derived class to provide an implementation. A virtual function provides a default implementation and it can exist on either an abstract class or a non-abstract class. So for example:
| ||||
|
feedback
|
|
Abstract method: When a class contains an abstract method, that class must be declared as abstract. The abstract method has no implementation and thus, classes that derive from that abstract class, must provide an implementation for this abstract method. Virtual method: A class can have a virtual method. The virtual method has an implementation. When you inherit from a class that has a virtual method, you can override the virtual method and provide additional logic, or replace the logic with your own implementation. When to use what:
In some cases, you know that certain types should have a specific method, but, you don't know what implementation this method should have. A virtual method should be used if you have a class which can be used directly, but for which you want inheritors to be able to change certain behaviour, although it is not mandatory. | |||
|
feedback
|
|
You must always override abstract function. Thus:
| |||
|
feedback
|
| |||
|
feedback
|
|
Abstract methods are always virtual. They cannot have implementation. That's the main difference. Basically you would use virtual method if you have 'default' implementation of it and want to allow descendants to change its behaviour. With abstract method you force descendants to provide implementation. | |||
|
feedback
|
|
An abstract method is a method that must be implemented to make a concrete class. The declaration is in the abstract class (and any class with an abstract method must be an abstract class) and it must be implemented in a concrete class. A virtual method is a method that can be overridden in a derived class using the override, replacing the behavior in the superclass. If you don't override, you get the original behavior. If you do, you always get the new behavior. This opposed to not virtual methods, that can not be overridden but can hide the original method. This is done using the See the following example:
When I instantiate Abstract methods are implicitly virtual. They define behavior that must be present, more like an interface does. | |||||||
feedback
|
|
You basically use a virtual method when you want the inheritors to extend the functionality IF they want to. You use abstract methods when you want the inheritors to implement the functionality (and in this case they have no choice) | |||
|
feedback
|
|
To my understanding: Abstract Methods: Only the abstract class can hold abstract methods. Also the derived class need to implement the method and no implementation is provided in the class. Virtual Methods: A class can declare these and also provide the implementation of the same. Also the derived class need to implement of the method to override it. | ||||
|
feedback
|
|
I made this to be more simplicity by making some improvements on the following classes at the answers of the related question here: abstract methods vs virtual methods in C#
| ||||
|
feedback
|