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.
Divya Eknath
Greenhorn
Joined: Jul 27, 2006
Posts: 9
posted
0
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.
wise owen
Ranch Hand
Joined: Feb 02, 2006
Posts: 2023
posted
0
Divya Eknath
Greenhorn
Joined: Jul 27, 2006
Posts: 9
posted
0
ppp sup = new ppp(); ppp.aaa sub = sup.new aaa(){};
sub.mmm();
Shiva Mohan
Ranch Hand
Joined: Jan 05, 2006
Posts: 465
posted
0
Thanks for the time and i got it.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.