bsh.Interpreter.getBshPrompt()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(0.7k)|赞(0)|评价(0)|浏览(153)

本文整理了Java中bsh.Interpreter.getBshPrompt()方法的一些代码示例,展示了Interpreter.getBshPrompt()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Interpreter.getBshPrompt()方法的具体详情如下:
包路径:bsh.Interpreter
类名称:Interpreter
方法名:getBshPrompt

Interpreter.getBshPrompt介绍

[英]Get the prompt string defined by the getBshPrompt() method in the global namespace. This may be from the getBshPrompt() command or may be defined by the user as with any other method. Defaults to "bsh % " if the method is not defined or there is an error.
[中]获取由全局命名空间中的getBshPrompt()方法定义的提示字符串。这可能来自getBshPrompt()命令,也可能由用户使用任何其他方法定义。如果未定义方法或存在错误,则默认为“bsh%”。

代码示例

代码示例来源:origin: beanshell/beanshell

console.prompt(getBshPrompt());

代码示例来源:origin: jitlogic/zorka

print( getBshPrompt() );

相关文章