當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Compiler enable()用法及代碼示例


Compiler類enable()方法

  • enable()方法可在java.lang包。
  • enable()方法用於使編譯器恢複使用 disable() 方法停止的操作。
  • enable()方法是一個靜態方法,它可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們不會得到任何錯誤。
  • enable()方法恢複運行時不拋出異常。

用法:

    public static void enable();

參數:

  • 它不接受任何參數。

返回值:

這個方法的返回類型是void,它什麽都不返回。

例:

// Java program to demonstrate the example 
// of void enable() method of Compiler 

public class Enable {
    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);
    }
}

輸出

Enabled Compiler by using enable() 
b = 20


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Compiler enable() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。