InterviewSolution
| 1. |
Explain What Is The Use Of == And Equals() Method? |
|
Answer» The == operator COMPARE WHETHER two object references are refer to the same INSTANCE or not.The equals() METHOD compare the characters(contents) of two String object. String a="Hai"; The == operator compare whether two object references are refer to the same instance or not.The equals() method compare the characters(contents) of two String object. Example: String a="Hai"; |
|