Can anyone tell me how the implicit inheritance works in java internally?
What I mean is if I create a class how exactly it extends the Object class in the JVM?
Thanks in advance.
|
Can anyone tell me how the implicit inheritance works in java internally? Thanks in advance. |
|||
|
|
|
Java forces inheritance on every class. If you do not explicitly inherit from a class, then by default Java assumes that you are inheriting from the class called Object, which does not do much, but does have several useful methods :
|
|||
|
|
|
For all practical reasons, you can think that |
|||
|
|
|
Apart from the Object class, every class in Java must have a super-class. There is nothing special about implicit inheritance. It is simply a syntactic shortcut that means you don't have to write In practice, this means that every class inherits certain standard methods from |
||||
|
|