Compiler类disable()方法
- disable() 方法可在
java.lang
包。 - disable() 方法用于使编译器停止运行。
- disable() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到任何错误。
- disable() 方法停止操作时不抛出异常。
用法:
public static void disable();
参数:
- 它不接受任何参数。
返回值:
这个方法的返回类型是void
,它什么都不返回。
例:
// Java program to demonstrate the example
// of void disable() method of Compiler
public class Disable {
public static void main(String args[]) {
// This code is to check whether Compiler is enabled or not
Compiler.enable();
System.out.println("Enabled Compiler by using enable() ");
Compiler.command("{java.lang.Byte.*} (compile)");
byte by = 20;
Byte b = new Byte(by);
// Display value
System.out.println("b = " + b);
// This code is to check whether Compiler is disabled or not
System.out.println("Disabled Compiler by using disable() ");
Compiler.disable();
}
}
输出
Enabled Compiler by using enable() b = 20 Disabled Compiler by using disable()
相关用法
- Java Compiler command()用法及代码示例
- Java Compiler compileClass()用法及代码示例
- Java Compiler enable()用法及代码示例
- Java Compiler compileClasses()用法及代码示例
- 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 disable() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。