📄 bg.bsh
字号:
/** Source a command in its own thread in the caller's namespace <p> This is like run() except that it runs the command in its own thread. Returns the Thread object control. @method Thread bg( String filename )*/bsh.help.run= "usage: Thread bg( filename )";Thread bg( String filename ) { callerNameSpace = this.caller.namespace; run() { this.interpreter.source( filename, callerNameSpace ); } thread = new Thread( this ); thread.start(); return thread;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -