What 's the practical usage of virtual functions in c#?
|
1
|
|
|
|
|
|
Like any other language..when you want polymorphism. There are tons of usage for this. For example you want to abstract the way input is read from a console or a file or some other device. You can have a generic reader interface followed by multiple concrete implementations using virtual functions. |
||
|
|
|
|
So basically if in your ancestor class you want a certain behaviour for a method. If your descendent uses the same method but has a different implementation you can override it, If it has a virtual keyword.
|
|||
|
|
|
|
e.g. proxying methods. i.e. overwriting methods at runtime. For example, NHibernate uses this to support lazy loading. |
||
|
|
|
|
It's used to tell a derived class that the function can be overridden. MSDN has a good example here. |
||
|
|
|
|
Basically virtual members allow you to express polymorphism, a derived class can have a method with the same signature as the method in its base class, and the base class will call the derived class's method. A basic example:
|
||||
|
|
|
From here:
|
||
|
|
|
|
For example you have a base class Params and a set of derived classes. You want to be able to perform the same operation on an array that stores all possible classes derived from params. No problem - declare the method virtual, add some basic implementation to Params class and override it in derived classes. Now you can just traverse the array and call the method through the reference - the correct method will be called.
|
||
|
|
|
|
This allows to achieve late binding, meaning to determine at runtime rather than at compile-time which object's member will be invoked. See Wikipedia. |
||
|
|
