What is a generic type?
No Answer is Posted For this Question
Be the First to Post Answer
What are void pointers?
What is the use of http-tunneling in rmi?
What are the different types of inheritance in java?
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?
Does a function need a return?
Can we use a default constructor of a class even if an explicit constructor is defined?
what are synchronized methods and synchronized statements? : Java thread
What is int lol?
What is Java Classloader?
1 Answers Phantom Technologies,
What class allows you to read objects directly from a stream?
Is string pool garbage collected?
Which is better arraylist or vector?