vote up 2 vote down star

A class can be a "subclass" of itself if its inner class extend the outer class so the class is somehow extending itself without throwing any Exception. So, does it really mean a class is also a subclass of itself?

Thanks.

flag

7 Answers

vote up 4 vote down check

A class is not a subclass of itself. An inner class could be a subclass of some other class, but that is a separate class. You can verify this by comparing the Class instances you get when you call getClass().

link|flag
vote up 3 vote down

The definition of subclass is that it extends another class and inherits the state and behaviors from that class. A class cannot extend itself since it IS itself, so it is not a subclass. Inner classes are allowed to extend the outer class because those are two different classes.

link|flag
not necessarily, it can just change behaviour to – Peter May 8 at 13:04
vote up 1 vote down

No. An inner class is something completely different from its outer class. Unless I am misunderstanding your question...

link|flag
vote up 1 vote down

start here : http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html

link|flag
vote up 1 vote down

Actually JVM doesn't now anything about inner classes.

All inner classes become usual classes after compilation but compiler gives them accessors to all fields of outer class.

In OOP theory, class cannot be its subclass or superclass.

link|flag
Note entirely true. It is flagged in the bytecode format. As an example: java.sun.com/javase/6/…() – Tom Hawtin - tackline May 8 at 13:40
vote up 1 vote down
public class ParentClass {

    int intField = 10;

    class InnerClass extends ParentClass {

    }

    public static void main(String... args) {
        ParentClass parentClass = new ParentClass();
        InnerClass innerClass = parentClass.new InnerClass();

        System.out.println(innerClass.intField);

        InnerClass innerClass2 = innerClass.new InnerClass();
    }
}
link|flag
+1 for the example.. – ZiG May 8 at 13:05
vote up 0 vote down

If you define a class subclassing itself as this:

public class Test {

    public static void main(String[] args) {
        // whatever...
    }

    class TestChild extends Test {
        // whatever...
    }
}

Then yes this is possible. But note that these are two entirely separate classes, barring the fact the one is inner to the other.

link|flag
There is no class “inner” to any other class in your example. – Bombe May 8 at 12:53
Those are separate classes. Try using inner classes. – eradicus May 8 at 12:53
oops, parenthesis got messed up – Yuval A May 8 at 13:06
Votes balanced.. :) – ZiG May 8 at 13:08
-2 votes for parenthesis only. you guys are harsh :) – Yuval A May 8 at 13:09
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.