System.out.println(null);
-----------> compilation error
System.out.println((Object)null);
-----------> output null
System.out.println(null);
-----------> compilation error
System.out.println((Object)null);
-----------> output null

被折叠的 条评论
为什么被折叠?