このコードを試してください -
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 コード 0 で終了するのはなぜですか?
Windows 7のJCreator LEでこれを試しました。