What is the difference between this keyword and super keyword? Both are used to access constructors of class right? Can any of you explain?
|
Lets consider this situation
The output is going to be
The third line is printing "animal:eat" because we are calling |
|||
|
|
|
Extending the notion, if you write |
||||
|
|
|
In the constructor, Calling methods works the same way. Calling |
|||
|
|
|
From your question, I take it that you are really asking about the use of
versus
The difference is simple:
|
|||
|
|
|
|
|||
|
|
|
When writing code you generally don't want to repeat yourself. If you have an class that can be constructed with various numbers of parameters a common solution to avoid repeating yourself is to simply call another constructor with defaults in the missing arguments. There is only one annoying restriction to this - it must be the first line of the declared constructor. Example:
As for the
Additional information: Even though you don't see it, the default no argument constructor always calls
is equivalent to
I see that many have mentioned using the |
|||
|
|
|
By doing
|
|||||||||||
|