| Author |
Object Pool
|
Mihai Radulescu
Ranch Hand
Joined: Sep 18, 2003
Posts: 912
|
|
Hallo I deal in a GUI with a lot images(gufs, jpgs) and because some of them are uses in more than one place I try to manage them with via a casche mechanism. So I build a pool where I keep all my the imaget that I use(see the code below). I know that a similar map mechanism exist already for WeakReferences (java.util.WeakHashMap) but I use (explicit) the soft references for them quality - the garbage collector might clear a soft reference but always clears a weak referencen. It this ok ? There are also other opinion about this?
|
SCJP, SCJD, SCWCD
|
 |
Dirk Schreckmann
Sheriff
Joined: Dec 10, 2001
Posts: 7023
|
|
I'm moving this to the Advanced forum... [ December 04, 2004: Message edited by: Dirk Schreckmann ]
|
[How To Ask Good Questions] [JavaRanch FAQ Wiki] [JavaRanch Radio]
|
 |
 |
|
|
subject: Object Pool
|
|
|