print.bsh
来自「用java 编写的源码开放的文本编辑器。有很多有用的特性」· BSH 代码 · 共 33 行
BSH
33 行
/** Print the string value of the argument, which may be of any type. If beanshell is running interactively, the output will always go to the command line, otherwise it will go to System.out. <p> Most often the printed value of an object will simply be the Java toString() of the object. However if the argument is an array the contents of the array will be (recursively) listed in a verbose way. <p> Note that you are always free to use System.out.println() instead of print().*/bsh.help.print = "usage: print( value )";void print( arg ) { if ( arg == null ) arg = "null"; if ( arg instanceof Object [] ) { len = arg.length; print( "Array: "+arg +" {"); for( int i=0; i< len; i++ ) { this.interpreter.print(" "); print( arg[i] ); } print ( "}"); } else this.interpreter.println(String.valueOf(arg));}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?