?? javawhitespace.java
字號(hào):
package lolo.scans;/** Instances of this class scan for one or more Java whitespace characters. The test * is done by the <tt>java.lang.Character.isWhitespace()</tt> method. * <p>By default these symbols will be ignored. * * @author <a href="http://www.inf.uos.de/bernd" target="_blank">Bernd Kühl</a> (<a href="mailto:bernd@informatik.uni-osnabrueck.de">bernd@informatik.uni-osnabrueck.de</a>) */public class JavaWhitespace extends SimpleWhitespace { /** Test if the argument is a Java whitespace character. */ protected boolean isWhitespace(char ch) { return Character.isWhitespace(ch); }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -