Java : If A extends B and B extends Object, is that multiple inheritance

21,411

Solution 1

My answer is correct?

Yes, mostly, and certainly in the context you describe. This is not multiple inheritance:

Object ^- ClassA ^- ClassB

It's what you said it is, single inheritance with multiple levels.

This is multiple inheritance: Inheriting from two or more bases that don't have any "is a" relationship with each other; that would be inheriting from unrelated lines, or from lines that had previously diverged (in Java, since Object is always a base, it would be the latter):

Object ^- ClassA, Object ^- ClassB, ClassA ^- ClassC, ClassB ^- ClassC

(Image credits: http://yuml.me in "scruffy" mode)

Internally What happens actually?

Just what you said: There are multiple levels. When the compiler is resolving a member on an instance:

obj.member

...it looks to see if the type of obj (which in this case is a class, say ClassB) has member, either because it provides it directly or it has it through inheritance. At runtime, the JVM uses the member the object actually has.


The reason I said "mostly" above is that Java has interfaces, and as of Java 8 it has "default methods" on interfaces. This complicates things a bit, but your answer about levels is correct in the context of what you described the interviewer saying about Object, ClassA, and ClassB.

Interfaces have always made it possible, in Java, for something to have an "is a" relationship with two different types: A class type it inherits from, and any of several interface types it implements. Interfaces without default methods aren't multiple inheritance in a practical way (the class has to provide the implementation), but they did make it possible for a class to have multiple "is a" relationships from unrelated type trees. (I'm not an academic, it's possible an academic would argue that they provide multiple inheritance in an academic way.)

With Java 8, interfaces can provide default implementations of the methods they define, which really blurs the lines even at the practical level. Let's look at that a bit more deeply:

Say we have ClassA:

class ClassA {
    void doSomething() {
        // Code here
    }
}

and Interface1:

interface Interface1 {
    default void doSomethingElse() { // Requires Java 8
        // Code here
    }
}

and finally ClassB:

class ClassB extends ClassA implements Interface1 {
}

ClassB inherits the implementation of doSomething from ClassA. But it also gets the "default" version of doSomethingElse from Interface1. We didn't implement it in ClassB, but ClassB isn't abstract: It really has doSomethingElse. It gets it from the interface. I used the word "gets" rather than "inherits" there, but this looks a lot like inheriting the default method.

This is basically multiple-inheritance "light" (as in "light beer"). It does an end-run around the thornier problems with true multiple inheritance, like:

  • What should the type of super be? (Java 8's answer: ClassA)
  • What order do you run constructors in? (Java 8's answer: Single-lineage constructor chaining, interfaces don't have constructors.)
  • Do you run constructors that you inherit more than once, more than once? (Java 8's answer: You can't inherit constructors more than once, interfaces don't have them.)
  • What happens if you inherit multiple methods with the same signature? (Java 8's answer: If one of them is from the base class, that's the one that's used; a base class's implementation can override the default method of multiple interfaces. If you have multiple default methods with the same signature from different interfaces at compile-time, it's a compile-time error. If an interface has been changed without the class being recompiled and the situation arises at runtime, it's a runtime IncompatibleClassChangeError exception listing the conflicting default methods.)

Solution 2

you are correct

First of all, Object class is the super/base/parent class of every class including user-defined classes.

So even if we don't mention it explicitly, the user-defined classes extends Object class by default.

its like

class A 
class B extends A

 but compiler read it as 
class A extends Object
class B extends A

proved

for more detail check this java documentation for inheritance

Solution 3

My answer is correct?

You are absolutely correct in saying that it is multi-level inheritance and not multiple inheritance.

Only the root of the hierarchy is Object, all classes don't individually extend Object.

A counter to the interviewer:

If all classes extend Object, then how many times constructor of Object will be called on A a = new A();

The answer is only once, and that will be for the root of the hierarchy.

Solution 4

Yes, you are correct... as many others have pointed out. I just wanted to say that interviews are not only about technical knowledge, it is also about sticking to your guns. Some interviewers will question your answer, not because they want to know if you are sure of your convictions but also to test how well you can teach others and how well you handle an authoritative figure.

For the first point, if you can't teach others then you can't be a mentor. Nowadays it is crucial to hire someone who can coach junior developers.... because it makes sense economically.

For the second point, because they don't want you changing technical aspects just because your boss asked you to. If your boss asks you to remove all indexes from the database because they take up too much space, would you do it? Would you try to convince your boss otherwise? How?

Solution 5

Does java support multiple inheritance?

Yes for interfaces but not for classes.

The class and interface can implements many interfaces but extends only one class

Share:
21,411
Ankit Sharma
Author by

Ankit Sharma

A Skilled Java Developer with expertise in using new tools and technical developments to drive improvements throughout an entire software development life cycle.Over 9 years of extensive industry and full life cycle experience in Java based environment along with exceptional analytical, design, and problem-solving capabilities.

Updated on February 26, 2020

Comments

  • Ankit Sharma
    Ankit Sharma about 4 years

    I just had an interview, and I was asked a question.

    Interviewer - Does Java support multiple inheritance?

    Me - No

    Interviewer - Each class in Java extends class Object (except class Object) and if we externally extend one class like

    Class A extends B{
      // some code here
    }
    

    then you can say that class A extend class B and class Object, which means it is multiple inheritance. So how can you say Java does not support multiple inheritance?

    Me - Actually class B extends class Object, so when you extend class B in class A then class A extends class Object indirectly. This is multi-level inheritance, not multiple inheritance.

    But my answer did not satisfy him.

    Is my answer correct? Or where am I wrong? What actually happens internally?