home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java Certification Exam Guide
/
McGrawwHill-JavaCertificationExamGuide.iso
/
pc
/
Web Links and Code
/
ans
/
chap12
/
exer1202
/
Account.java
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-04-20
|
312 b
|
16 lines
class Account {
private double balance;
synchronized double getBalance() {
return balance;
}
synchronized void setBalance(double newBalance) {
balance = newBalance;
}
synchronized void updateBalance(double amount) {
setBalance(getBalance() + amount);
}
}