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.
Bfrom an abstract oneA, during the part of construction ofBinstance, which consist runningA's constructor, the object's runtime type is actuallyA. Only temporary however. – Vlad Dec 4 '12 at 20:21