How do you escape a string?
No Answer is Posted For this Question
Be the First to Post Answer
can we declare private class in java file?
What does a void function return?
What is the SimpleTimeZone class?
What is not thread safe?
What is getkey () in java?
What is a java string?
public 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?
What is public static void main?
Can we assign null to double in java?
what is jdk1.5 features?
How to do validation of the fields in any project ?
What is Java exception handling?