Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
/D identifier
This option tells the compiler to consider the identifier as a defined symbol for conditional compilation on all files being compiled. The symbol can be tested in a .java source file by using the #if directive to test if a symbol is defined. See for more information.
Example
The following command compiles the myClass.java file, with the WINDOWS and DEBUG preprocessing symbols defined:
JVC /D WINDOWS /D DEBUG myClass.java