Lecture 7
11
Scope
•
To see a method or field outside its scope,
qualify
the name of the method or field:
–
account
.getBalance()
–
System
.out
–
this
.contents
•
But
–
account
.balance
•
will fail because
balance
is
private
–
•