?? source.bsh
字號:
/** Read filename into the interpreter and evaluate it in the current namespace. Like the Bourne Shell "." command.*/bsh.help.source = "usage: source( filename | URL )";Object source( String filename ) { return this.interpreter.source( filename, this.caller.namespace );}Object source( URL url ) { return this.interpreter.eval( new InputStreamReader(url.openStream()), this.caller.namespace, "URL: "+url.toString() );}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -