callable.java
来自「javascript语言的解释器源码」· Java 代码 · 共 22 行
JAVA
22 行
package org.mozilla.javascript;/** * Generic notion of callable object that can execute some script-related code * upon request with specified values for script scope and this objects. */public interface Callable{ /** * Perform the call. * * @param cx the current Context for this thread * @param scope the scope to use to resolve properties. * @param thisObj the JavaScript <code>this</code> object * @param args the array of arguments * @return the result of the call */ public Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?