class Test1
{
static int x;
public static void main(String [] args)
{
System.out.println("Please enter :");
try{ x=System.in.read();}
catch(Exception e) {System.out.println(e.getMessage());}
while(x!='w')
{
System.out.println((char)x);//这里为什么x要用强制转化?
try{ x=System.in.read();}
catch(Exception e)//会抛出异常{System.out.println(e.getMessage());}
}
}
}
这里为什么要用强制转换,不转打印出什么??System.in.read()到底是怎么用的? |