mercoledì 27 marzo 2013

Q27

Q27


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))
La risposta è B.
Riferimento : Operatore == e metodo .equals ()

Nessun commento:

Posta un commento