Garbage collection in java?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of strings?
Hi Friends.. can any one provide the real time example for methodoverloading and methodoverriding .........
If I will write String s=new String("XYZ"); String s1=new String("XYZ"); if(s.equals(s1)){ sop("True"); } else{ sop("False"); } This program will give me "True". But When I am creating my own class suppose class Employee{ public Employee(String name); } Employee e= new Employee("XYZ"); Employee e1 = neew Employee("XYZ"); if(e.equals(e1)){ sop("True"); } else{ sop("False"); } Then it will give the output as "False". Can I know what is happening internally?
Is java hard to learn?
Why declare Main() method as a static in java ?
What is the use join() in Threads ?
What are the two main uses of volatile in Java?
What ide should I use for java?
What is java util concurrentmodificationexception?
What is a Null object?
What is aggregation?
How to display names of all components in a Container?