当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。