What are java packages?
No Answer is Posted For this Question
Be the First to Post Answer
How do you sort arraylist in descending order?
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 autoboxing in java?
What is the basic of java?
What occurs when an object is constructed?
How do you replace all in word?
Does Java support multiple Inheritance?
How use .contains in java?
what do you mean by classloader in java?
What is the right data type to represent a price in java?
Where to store local variables?
What is the Difference between Final Class && Abstract Class?