本帖最后由 完美恋爱 于 2013-10-16 09:26 编辑
import java.io.*;
class My
{
public static void main(String[] agrs) throws IOException
{
InputStream in = System.in;
StringBuilder sb = new StringBuilder();
while(true)
{
int ch = in.read();
if(ch == '\r')
continue;
if(ch == '\n')
{
String s = sb.toString();
if("over".equals(s))
{
break;
}
System.out.println(s.toUpperCase());
}
else
sb.append((char)ch);
}
}
}
请问为什么这个在控制台里打over不关闭,可是在if(ch=='\n')语句里加上sb.delete(0,sb.length());这行代码后打over就关闭了呢?
这行代码不是清空缓存区的意思吗?
|