Given the code fragment:
String h1 = “Bob”;
String h2 = new String (“Bob”);
What is the best way to test that the values of h1 and h2 are the same?
A.
if (h1 == h2)
B.
if (h1.equals(h2))
C.
if (h1 = = h2)
D.
if (h1.same(h2))
Explanation:
The equals method compares values for equality.