Compiler类compileClass()方法
- compileClass() 方法可在
java.lang
包。 - compileClass() 方法用于编译给定的类。
- compileClass() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到任何错误。
- compileClass() 方法可能在编译给定类时抛出异常。
NullPointerException :当给定的 Class 参数为 null 时,可能会抛出此异常。
用法:
public static boolean compileClass(Class cl_name);
参数:
Class cl_name
– 表示类的名称。
返回值:
这个方法的返回类型是String
,它根据给定的情况返回以下值,
- 它返回
true
当给定的类编译成功时。 - 它返回
false
当给定的类失败或不存在编译器时。
例:
// Java program to demonstrate the example
// of boolean compileClass(Class cl_name) method of Compiler
public class Parent {
public static void main(String args[]) {
// Creating a Parent and Child class object
Parent p1 = new Parent();
Parent p2 = new Child();
// By using getClass() method is to get a Parent class
Class cl1 = p1.getClass();
System.out.println("p1.getClass() = " + cl1);
// By using getClass() method is to get a Child class
Class cl2 = p2.getClass();
System.out.println("p2.getClass() = " + cl2);
// By using compileClass(Class cl) method is to compile Parent class
// it return boolean values if it returns then given class is compiled
// successfully otherwise compilation failed or no compiler exists
boolean status = Compiler.compileClass(cl1);
System.out.println("Compiler.compileClass(cl1) = " + status);
}
}
class Child extends Parent {
public void show() {
System.out.println("We are in Child class:");
}
}
输出
p1.getClass() = class Parent p2.getClass() = class Child Compiler.compileClass(cl1) = false
相关用法
- Java Compiler compileClasses()用法及代码示例
- Java Compiler command()用法及代码示例
- Java Compiler disable()用法及代码示例
- Java Compiler enable()用法及代码示例
- Java CompoundName startsWith()用法及代码示例
- Java CompositeName getPrefix()用法及代码示例
- Java CompositeName startsWith()用法及代码示例
- Java CompositeName getSuffix()用法及代码示例
- Java CompoundName getAll()用法及代码示例
- Java Comparator comparingDouble()用法及代码示例
- Java Comparator thenComparingLong()用法及代码示例
- Java CompoundName remove()用法及代码示例
- Java CompoundName endsWith()用法及代码示例
- Java Comparator thenComparingInt()用法及代码示例
- Java CompositeName clone()用法及代码示例
- Java CompoundName getPrefix()用法及代码示例
- Java Comparator naturalOrder()用法及代码示例
- Java Comparator nullsLast()用法及代码示例
- Java CompositeName isEmpty()用法及代码示例
- Java CompoundName isEmpty()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Compiler compileClass() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。