Class CombinationLock implementation (cont.)
npublic CombinationLock (int combination) {
n this.combination = combination;
n isOpen = false;
n}
nWe could write the second assignment as
uthis.isOpen = false;
nBut there is no ambiguity, so it is not needed.
n