Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The interviewer asked, Can we instantiate an abstract class? I said, No. He told me, Wrong, we can. I argued a bit on this. Then he told me to try this yourself at your home.

abstract class my {
    public void mymethod() {
        System.out.print("Abstract");
    }
}

class poly extends my {
    public static void main(String a[]) {
        my m = new my() {};
        m.mymethod();
    }
}

Here, I'm creating instance of my class and calling method of abstract class. Can anyone please explain this to me? Was I really wrong during my interview?

share|improve this question
3  
possible duplicate stackoverflow.com/questions/4579305/… – AshRj Dec 2 '12 at 16:04
27  
"Then, he told me to try yourself at your home" You should have said the exact same thing back to him. – Phil Keeling Dec 2 '12 at 16:06
1  
possible duplicate of Why would one declare a Java interface method as abstract? – Peter O. Dec 2 '12 at 17:14
1  
Although only slightly related, one can perhaps instantiate an abstract class in C++: if you derive a non-abstract class B from an abstract one A, during the part of construction of B instance, which consist running A's constructor, the object's runtime type is actually A. Only temporary however. – Vlad Dec 4 '12 at 20:21
1  
@jWeavers: The example he has given is totally wrong. You should have asked "then what is the use of abstract class" from him. If you are extending it, then why are you creating an instance of the extended class? It is a completely new object, where you end up with no data.. – Knight Feb 12 at 8:42
show 2 more comments

10 Answers

up vote 176 down vote accepted

Here, i'm creating instance of my class

No, you are not creating the instance of your abstract class here. Rather you are creating an instance of an anonymous subclass of your abstract class. And then you are invoking the method on your abstract class reference pointing to subclass object.

This behaviour is clearly listed in JLS - Section # 15.9.1: -

If the class instance creation expression ends in a class body, then the class being instantiated is an anonymous class. Then:

  • If T denotes a class, then an anonymous direct subclass of the class named by T is declared. It is a compile-time error if the class denoted by T is a final class.
  • If T denotes an interface, then an anonymous direct subclass of Object that implements the interface named by T is declared.
  • In either case, the body of the subclass is the ClassBody given in the class instance creation expression.
  • The class being instantiated is the anonymous subclass.

So, the last point clearly specifies this thing.

Also, in JLS - Section # 12.5, you can read about the Object Creation Process. I'll quote one statement from that here: -

Whenever a new class instance is created, memory space is allocated for it with room for all the instance variables declared in the class type and all the instance variables declared in each superclass of the class type, including all the instance variables that may be hidden.

Just before a reference to the newly created object is returned as the result, the indicated constructor is processed to initialize the new object using the following procedure:

You can read about the complete procedure on the link I provided.


To practically see that the class being instantiated in and Anonymous Sub Class, you can do following modification in your code: -

Try making the method in your abstract class as abstract, and use the way you are using to invoke it. You will get compiler error. Because in that case, you would need to provide the implementation of the abstract class in the anonymous sub class.

abstract class my {
    public abstract void mymethod();
}

public static void main(String a[]) {

    // my m = new my() { };  // Compiler Error

    my m = new my() {
        @Override
        public void mymethod() {  // You need to implement abstract method
            System.out.print("Abstract");
        }
    };
    m.mymethod();
}

So, you need to add implementation for all the abstract methods in your anonymous subclass you created. It is all same as in case you create a class extending your abstract class. Implementing all abstract method, and instantiating it. It's just that, anonymous class don't have name.

share|improve this answer
38  
@coders. Exact answer is: - You can't instantiate your abstract class, however you can instantiate a concrete subclass of your abstract class. – Rohit Jain Dec 2 '12 at 16:06
5  
In one line you can say:- You can never instantiate an abstract class. That's the purpose of an abstract class. – LearnedfromMistake Dec 2 '12 at 16:08
16  
So a simple "No" is the correct answer, too. – AlexWien Dec 2 '12 at 16:09
3  
thanks for clearing my doubt. But, now it was really tough decision to accept one answer. Because, both answer is acceptable. So, thanks again for your contribution !! – jWeavers Dec 2 '12 at 16:38
14  
It's sounds like the interviewer was more invested in his answer than he was in yours... – Neil T. Dec 2 '12 at 20:55
show 6 more comments

The above instantiates an anonymous inner class which is a subclass of the my abstract class. It's not strictly equivalent to instantiating the abstract class itself. OTOH, every subclass instance is an instance of all its superclasses and interfaces, so most abstract classes are indeed instanciated by instantiating one of their concrete subclass.

If the interviewer just said "wrong!" without explaining, and gave this example as a unique counter-example, I think he doesn't know what he's talking about, though.

share|improve this answer
1  
Strictly speaking, the abstract superclass is not instantiated. It's constructor is called to initialize instance variables. – Perception Dec 2 '12 at 16:20
2  
Yes it is: subclassInstance instanceof SuperClass would return true, so the object is an instance of the superclass, which means the superclass has been instanciated. But that's just semantic nitpicking. – JB Nizet Dec 2 '12 at 16:23
1  
Could be semantics indeed. Java defines instantiation in terms of creating objects via the new keyword (which ofc you cannot do with an abstract class). But of course the concrete subclass will report correctly that its an instance of every member of its parent hierarchy. – Perception Dec 2 '12 at 16:27
3  
@MarkoTopolnik: paragraph 4.12.6 of the JLS says: "An object is said to be an instance of its class and of all superclasses of its class.". – JB Nizet Dec 2 '12 at 17:21
2  
I withdraw my comment :) I was convinced otherwise. Thanks for the reference. – Marko Topolnik Dec 2 '12 at 17:25
show 1 more comment

= my() {}; means that there's an anonymus implementation, not simple instantiation of an object, which should have been : = my(). You can never instantiate an abstract class.

share|improve this answer

Just observations you could make:

  1. Why poly extends my? This is useless...
  2. What is the results of the compilation? Three files: my.class, poly.class and poly$1.class
  3. If we can instantiate an abstract class like that, we can instantiate an interface too... weird...


Can we instantiate an abstract class?

No, we can't. What we can do is creating an anonymous class (that's the third file) and instantiate it.


What about a superclass instantiation?

The abstract superclass is not instantiate by us but by java.

EDIT: Ask him to test this

public static final void main(final String[] args) {
    final my m1 = new my() {
    };
    final my m2 = new my() {
    };
    System.out.println(m1 == m2);

    System.out.println(m1.getClass().toString());
    System.out.println(m2.getClass().toString());

}

output is:

false
class my$1
class my$2
share|improve this answer

Abstract classes cannot be instantiated, but they can be subclassed. See This Link

The best example is

Although Calender class has a abstract method getInstance(), but when you say Calendar calc=Calendar.getInstance();

calc is referring to the class instance of class GregorianCalendar as "GregorianCalendar extends Calendar "

Infact annonymous inner type allows you to create a no-name subclass of the abstract class and an instance of this.

share|improve this answer

You can simply answers, in just one line

No, you can never instance Abstract Class

But, interviewer still not agree, then you can tell him/her

all you can do is, you can create an Anonymous Class.

And, according to Anonymous class, class declared and instantiate at the same place/line

So, it might be possible that, interviewer would be interested to check your confidence level and how much you know about the OOPs .

share|improve this answer

Technical Answer

Abstract classes cannot be instantiated - this is by definition and design.

From the JLS, Chapter 8. Classes:

A named class may be declared abstract (ยง8.1.1.1) and must be declared abstract if it is incompletely implemented; such a class cannot be instantiated, but can be extended by subclasses.

From JSE 6 java doc for Classes.newInstance():

InstantiationException - if this Class represents an abstract class, an interface, an array class, a primitive type, or void; or if the class has no nullary constructor; or if the instantiation fails for some other reason.

You can, of course, instantiate a concrete subclass of an abstract class (including an anonymous subclass) and also carry out a typecast of an object reference to an abstract type.

A Different Angle On This - Teamplay & Social Intelligence:

This sort of technical misunderstanding happens frequently in the real world when we deal with complex technologies and legalistic specifications.

"People Skills" can be more important here than "Technical Skills". If competitively and aggressively trying to prove your side of the argument, then you could be theoretically right, but you could also do more damage in having a fight / damaging "face" / creating an enemy than it is worth. Be reconciliatory and understanding in resolving your differences. Who knows - maybe you're "both right" but working off slightly different meanings for terms??

Who knows - though not likely, it is possible the interviewer deliberately introduced a small conflict/misunderstanding to put you into a challenging situation and see how you behave emotionally and socially. Be gracious and constructive with colleagues, follow advice from seniors, and follow through after the interview to resolve any challenge/misunderstanding - via email or phone call. Shows you're motivated and detail-oriented.

share|improve this answer

It is a well-established fact that abstract class can not be instantiated as everyone answered.

When the program defines anonymous class, the compiler actually creates a new class with different name (has the pattern EnclosedClassName$n where n is the anonymous class number)

So if you decompile this Java class you will find the code as below:

my.class

abstract class my { 
    public void mymethod() 
    { 
        System.out.print("Abstract"); 
    }
} 

poly$1.class (the generated class of the "anonymous class")

class poly$1 extends my 
{
} 

ploly.cass

public class poly extends my
{
    public static void main(String[] a)
    {
        my m = new poly.1(); // instance of poly.1 class NOT the abstract my class

        m.mymethod();
    }
}
share|improve this answer

Ok Back to basics(Java 101):

Lets consider Animal as an abstract class. And Lion as it's subclass. We can't have any Animal class because being an Animal is too abstract, cause there's no way something can be just animal and not Lion, or Tiger, or cow. So for better Object Orientation similar to real world, the classes which are too abstract (such as Animal) are marked with abstract keyword and are not allowed to be instantiated, just because no object can be just Animal(using metaphors here). You need to be more specific. Like which kind of animal are you talking about, is it Giraffe, or Lion, or may be a dog. Of course you can choose your own level of specificity and abstractness. If you're talking about objects, being an Animal is more specific, than being just an object.

So I think now you understand the concept, thus to force users to be specific, Abstract classes are used. Now you can tell the same thing to the interviewer and make him go into speechless mode.

share|improve this answer

Since from this code you are just creating the instance of anonymous class instead of you same.

As same if you need can be create instance of interface as well. but even then it would be anonymous objects.

share|improve this answer
2  
there is nothing like anonymous object :/ – cool_ravi Dec 29 '12 at 18:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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