Java Compiler disable()方法
java.lang.Compiler.disable() 方法会导致编译器停止运作。
1 语法
public static void disable()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Calendar getInstance()方法的例子
*/
import java.lang.*;
public class CompilerDemo {
public static void main(String[] args) {
// checking if compiler is enabled or not
Compiler.enable();
System.out.println("Compiler Enabled...");
Compiler.command("{java.lang.Integer.*}(compile)");
Integer i = new Integer("30");
// returns a hash code value
int retval = i.hashCode();
System.out.println("Value = " + retval);
// disable the compiler
System.out.println("Disabling Compiler...");
Compiler.disable();
}
}
输出结果为:
Compiler Enabled...
Value = 30
Disabling Compiler...
热门文章
优秀文章