📄 tostringer.java
字号:
package com.truemesh.squiggle.output;
/**
* Utility to quickly grab the complete String from an object that is Outputtable
*
* @author <a href="mailto:joe@truemesh.com">Joe Walnes</a>
*/
public class ToStringer {
public static String toString(Outputable outputable) {
Output out = new Output(" ");
outputable.write(out);
return out.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -