Compiling and Launching

From Suhrid.net Wiki
Revision as of 00:36, 16 June 2011 by Suhridk (talk | contribs) (Created page with "* javac by default places the generated class files in the same directory as the source files. * use the javac -d option to place the class files in some other directory. * if th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
  • javac by default places the generated class files in the same directory as the source files.
  • use the javac -d option to place the class files in some other directory.
  • if the directory does not exist, there will be an error.
  • the directories for the package structure will however be automatically created by javac.