试试这段代码 -
public class WhitespaceTest
{
public static void main(String[] args)
{
int x = 0;
char c = (char) x;
System.out.println("c-->"+c+"<---this doesn't print?");
}
}
输出是 -
c-->
为什么 System.out.println() 以 ASCII 码零终止?
我在 Windows 7 下的 JCreator LE 中试过这个。