Is java.lang.Object superclass of all the custom class/objects inherited implicitly? I thought java didn\'t support multiple inheritance. The reason I ask is i
java.lang.Object
Everything is an Object, that said you could see the structure as this:
Object Animal Cat
and not as this:
Where Cat extends both, it's not like this last example, but it's Cat that extends Animal which extends Object.
Cat
extends
Animal
Object