DEVFYI - Developer Resource - FYI

What would you use to compare two String variables - the operator == or the method equals()?

Java Interview Questions and Answers (part 1)


(Continued from previous question...)

30. What would you use to compare two String variables - the operator == or the method equals()?

I'd use the method equals() to compare the values of the Strings and the == to check if two variables point at the same instance of a String object.

(Continued on next question...)

Other Interview Questions