Core Java (6529)
Advanced Java (552)
Swing (223)
EJB (402)
Java Networking (49)
Hibernate (1009)
Spring Framework (1486)
Java J2EE AllOther (116) what is the use of pojo (plain old java objects)? how it is interact with crystal reports? pls urgent
2180public class Garbage { int a=0; public void add() { int c=10+20; System.out.println(c); System.out.println(a); } public static void main(String args[]) { Garbage obj=new Garbage(); System.gc(); System.out.println("Garbage Collected"); obj.add(); } } Above is a code in java used for garbage collection. object obj has been created for the class Garbage and system.gc method is called. Then using that object add method is called.System.gc method if called the obj should be garbage collected?
6 8209If all the methods in abstract class are declared as abstract then what is difference between abstract class and in interface?
8 14921
What is an odbc driver?
What is serialversionuid?
How do you stop lazy loading?
what is the broker domain?
What is the purpose of redirect result type?
Can we override constructor in java?
Which list is sorted in java?
What is string args [] in java?
Whether we can get deadlock situation in servlets?
What is the reflection?
What is a domain template?
Difference between object instantiation and construction ?
Can a main method be declared final?
Implementations of set interface?
What is unicode with example?