| Author |
Properties class
|
Suresh Appagundi
Ranch Hand
Joined: Sep 22, 2003
Posts: 44
|
|
Is Properties methods synchronized? like Hashtable. thanks Suresh Appagundi
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8260
|
|
|
Properties extends Hashtable, so any method that Properties doesn't override would be synchronized. You could also look at the source (check your SDK directory for a src.zip file) and see that many Properties methods, like setProperty() and load(), are synchronized.
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
 |
|
|
subject: Properties class
|
|
|