When calling methods on a base class from a derived class, should the 'base' keyword be used? It seems using the base keyword would increase code readability but for me so far, when I exclude it, there is no affect on code compilation and execution.
|
|
|||||||||||
|
|
|
You should not use Using So saying |
||||||
|
|
|
I'd say no. The main purpose of Also, there is a very real difference if the method is virtual, and someone down the line overrides it. To give an example, say you write this (in a reusable class):
And later on someone else who uses your class writes:
Now your |
|||
|
|
|
|
Look to this example:
If we execute ChildClass.A() then we have some operations, but in this case:
we have StackOverflowException, because ChildClass.A() execute ChildClass.A() |
|||
|
|
|
|
Sometimes, you can't avoid it. If your class overrides an implementation of a function from the base class, then without the In all other situations, it's a matter of style (much like "Should I prefix all calls/field accesses with |
||
|
|
|
|
There are times when the base keyword has to be used such when you want to call a method in the base class that's been overidden in the derived class. |
||
|
|
|
|
The base keyword is important when overriding methods:
I never use it for anything else. |
||||||||||||
|
|
|
It does matter if you have
|
||||
|
|
|
This is an opinion but yes use the I use the There is no difference with the code. It only matters with Parameters meaning you can have a field in your base class called status and pass a status in as a parameter you would have to use |
||
|
|
|
There will be no difference in the generated IL in most cases. However, if you are overriding a virtual method in the base class, or hiding a method in the base class using the "new" keyword, then this is required, and will change the meaning, since it explicitly calls the base class method. However, it is often a good idea, since it improves readability, and hence maintainability. If you are explicitly wanting to call a method in the base class, then I feel that it's a good idea, even when not technically required. |
||||||||
|
