Applying abstract modifier in member class is allowed.But how can I access mmm() method in the member class.Since this member class is abstract,it won�t allow me for instantiation like
Ppp.aaa myaaa=myppp.new aaa();
Is there any way to access the mmm() method.Please give a helping hand.
The abstract inner class's mmm() method cannot be called directly as abstract classes cannot be instantiated.You can extend the abstract inner class and call the method using the object reference of the subclass.