|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface Compilable
由 ScriptEngines 实现的可选接口,该 ScriptEngines 的方法将脚本编译成无需重新编译就能反复执行的某种形式。
方法摘要 | |
---|---|
CompiledScript |
compile(Reader script) 编译脚本(从 Reader 读取的源),以便以后执行。 |
CompiledScript |
compile(String script) 编译脚本(以 String 形式表示的源),以便以后执行。 |
方法详细信息 |
---|
CompiledScript compile(String script) throws ScriptException
String
形式表示的源),以便以后执行。
script
- 脚本的源,以
String
形式表示。
CompiledScript
的子类,以后将使用
CompiledScript
的某一个
eval
方法执行。
ScriptException
- 如果编译失败。
NullPointerException
- 如果参数为 null。
CompiledScript compile(Reader script) throws ScriptException
Reader
读取的源),以便以后执行。除了传递源的方式不同之外,在功能上等同于
compile(String)
。
script
- 从中获得脚本源的 reader。
CompiledScript
的实现,以后将使用
CompiledScript
的某一个
eval
方法执行。
ScriptException
- 如果编译失败。
NullPointerException
- 如果参数为 null。
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。