How do I get the | symbol on my keyboard?
No Answer is Posted For this Question
Be the First to Post Answer
What is the life-cycle of an object?
Why arraylist is not synchronized in java example?
Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me
Does anyone still use java?
How can i add a button in applet in java ???
Why spring singleton is not thread safe?
When garbage collector invokes object?s finalize() method?
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?
What is thread start?
What are meta-annotations?
Why do we need public static void main(String args[]) method in Java...?
Can you declare a private method as static?