What are the disadvantages of using inner classes?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is navigable map in java?

0 Answers  


Explain about object oriented programming and its features?

0 Answers  


What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?

0 Answers  


What is passing by reference in java?

0 Answers  


Whats the difference between notify() and notifyall()?

0 Answers  






How to declare objects of a class ?

0 Answers   Akamai Technologies,


Is delete, next, main, exit or null keyword in java?

1 Answers  


How does system arraycopy work in java?

0 Answers  


wahts is mean by thread?

22 Answers   HCL, TCS,


What is meant by final class?

0 Answers  


What is casting?

3 Answers   BMC,


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


Categories