Can we overload destructor in java?


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

Post New Answer

More Core Java Interview Questions

What are the principle concepts of oops?

0 Answers  


Can we call virtual funciton in a constructor ?

0 Answers   XX,


Can you override a private or static method in java?

1 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


Explain where variables are created in memory?

0 Answers  






What is the difference between break and continue statements?

0 Answers  


What is lazy initialization in java?

0 Answers  


What is a method in programming?

0 Answers  


why String class is immutable.

5 Answers   iGate,


What is an enumeration class?

2 Answers  


How do you sort a list in java?

0 Answers  


What is a website container?

0 Answers  


Categories