[JAVA3D] AW: [JAVA3D] Memory Problem

2003-03-30 Thread Florin Herinean
The imports used in the .java file is *only* used at compile time. The compilator then generates a list with only the needed classes. More than that, the classes are loaded at runtime as they are needed. In conclusion, changing the import statements doesn't have any implication at runtime.

[JAVA3D] AW: [JAVA3D] Memory problem

2003-03-28 Thread Florin Herinean
You can't. Java Garbage Collector is the only one who decides when and how unreferenced objects are collected. System.gc() only wakes up the garbage collector if it's not working. There are several types of garbage collectors available, see

Re: [JAVA3D] AW: [JAVA3D] Memory problem

2003-03-28 Thread hterrolle
Thanks you Florin. herve -Message d'origine-De : Florin Herinean [EMAIL PROTECTED]À : [EMAIL PROTECTED] [EMAIL PROTECTED]Date: vendredi 28 mars 2003 14:07Objet : [JAVA3D] AW: [JAVA3D] Memory problem You can't. Java Garbage Collector is the only one who decides