Is there any difference for below code
AbstractClass object = new SubClass();(SubClass is a class that extended the AbstractClass)
SubClass object = new SubClass();
In both the scenarios subclass extended the Abstract Class and implemented the methods of Abstract Class