Compiler Class provides support and related services to Java code to Native Code.
Native code is a form of code that can be said to run in a virtual machine (for example, [JVM]Java Virtual Machine).
Declaration :
public final class Compiler extends Object
Methods :
- command() : java.lang.Compiler.command() tests the argument type and performs some documented operations.
Syntax :public static boolean command(Object argument) Parameters : argument : needs to be compiler specific. Return : compiler specific value Exception : -> NullPointerException
- compileClass() : java.lang.Compiler.compileClass() compiles the specified class.
Syntax :
public static boolean compileClass(Class c) Parameters : c : class to be compiled. Return : true if the compilation succeeded else, false Exception : -> NullPointerException
- enable() : java.lang.Compiler.enable() cause compiler to start operation.
Syntax :public static void enable() Parameters : ------ Return : void
- disable() : java.lang.Compiler.disable() stops compiler to perform operations.
Syntax :public static void disable() Parameters : ------- Return : void
- compileClasses() : java.lang.Compiler.compileClasses() compiles the classes having the name as string – “str”
Syntax :public static boolean compileClasses(String string) Parameters : str : name of the class to be compiled Return : true if the classes are compiled successfully Exception : -> NullPointerException
// Java Program illustrating the use of Compiler class Methods. import java.lang.*; public class NewClass { public static void main(String[] args) { CompilerClass geek = new CompilerClass(); // Use of enable() : Compiler.enable(); // class CompilerDemo Class c = geek.getClass(); System.out.println(c); // Use of command() : Object g = Compiler.command("javac CompilerClass"); System.out.println("Value : " + g); // Use of compileClass : // Since it is not a subclass so there is no compiler for it boolean check = Compiler.compileClass(c); System.out.println("\nIs compilation successful ? : " + check); String str = "CompilerClass"; boolean check1 = Compiler.compileClasses(str); System.out.println("\nIs compilation successful using str ? : " + check1); // Use of disable() : Compiler.disable(); } private static class CompilerClass { public CompilerClass() { } } } |
Output :
class NewClass$CompilerClass Value : null Is compilation successful ? : false Is compilation successful using str ? : false
Note :
lang.Compiler Class inherits others methods from Object class in Java.
This article is contributed by Mohit Gupta_OMG 😀. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important Java and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.
Recommended Posts:
- Java.lang.Class class in Java | Set 1
- Java.lang.Class class in Java | Set 2
- Using predefined class name as Class or Variable name in Java
- Java.util.TimeZone Class (Set-2) | Example On TimeZone Class
- Implement Pair Class with Unit Class in Java using JavaTuples
- Implement Triplet Class with Pair Class in Java using JavaTuples
- Implement Quintet Class with Quartet Class in Java using JavaTuples
- Implement Quartet Class with Triplet Class in Java using JavaTuples
- Implement Octet Class from Septet Class in Java using JavaTuples
- Implement Ennead Class from Octet Class in Java using JavaTuples
- Implement Sextet Class from Quintet Class in Java using JavaTuples
- Implement Septet Class from Sextet Class in Java using JavaTuples
- Implement Decade Class from Ennead Class in Java using JavaTuples
- Difference between Abstract Class and Concrete Class in Java
- In Java, Can we call the main() method of a class from another class?
- Does JVM create object of Main class (the class with main())?
- Inner Class And Anonymous Inner Class that Implements Runnable | Concurrent Programming Approach 3
- Java.util.BitSet class methods in Java with Examples | Set 2
- Java.Lang.Float class in Java
- Java.io.BufferedInputStream class in Java

