Java; am I missing something?

Started by
9 comments, last by -TheDragon 22 years, 3 months ago
You can specify stack sizes for your java application when you are calling the java executable....

java -Xms1MB -Xmx128MB SomeMainClass

-Xms <----- Minimum stack size...
-Xmx <----- Maximum stack size...

Also the IBM JVM is faster then the Sun one, more performant...

Also why the foot print might be biger, why features of course.... Garbage Collection is one... Also one nifty feature a bit slow though... You can search for a function as a strign within the VM and call it when you wish... etc...

This topic is closed to new replies.

Advertisement