Lecture 4
15
==
•
x == y
means
“
is
the value of x the same as the value of y?”
•
Bank.java line 82:
if (accountNumber == 1
)
•
x == y
is
the same as
y == x