Free Programming Books
Free download ebooks on computer and programming

Free Ebook Computer Programming

Free Ebook Computer Programming :
Java 1.4 Virtual Machine Options.pdf
Publisher :
Apple
Pages :14
Format :pdf
Size :0.2 MB
Upload date :11-23-05

Table of content

Coming soon

Other HOT and Free ebooks!!

Coming Soon

The standard Java HotSpot VM options are available with the Mac OS X Java VM. In addition to the standard options, many nonstandard (-X and -XX) options are also available.

Free Ebook Computer Programming : Java 1.4 Virtual Machine Options.pdf

General Options

-server
There is not a distinct server VM for Mac OS X. Although you may use the -server flag when invoking java, it does not start up a different VM, instead it starts the client VM that has been tuned for use in a server environment. This tuning includes:

  • Using a different class list for the shared archive generation that does not include the GUI classes.
  • Increasing the size of the Java heap.
  • Increasing the size of the Eden generation.
  • Turns on thread local Eden garbage collection.

-X
Displays a brief description of the nonstandard VM options.

-Xbootclasspath:path
Specifies a list of directories and JAR and ZIP archives to search for boot class files in. Seperate multiple entries with colons (:).........more

Download free ebook : Apple--Java_1.4_Virtual_Machine_Options.pdf
Free downloadable ebook Java on MAC OS

-Xfuture
Performs strict format-checking of class files. This option enforces a tighter conformance to the class file specification than the default, which is based on the standard in Java 1.1.x. You should test your code with this flag to ensure functionality in future versions of Java that may enforce stricter class file format-checking.

-Xprof
Sends detailed profiling data of the running program to standard output. This option should not be used in production code.

Top