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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。