对应第2章
java中数据类型:
比较 Integer与int ,Double与double等之类的区别?
int 是基本类型,而Integer是包装类。
当需要往ArrayList,HashMap中放东西时,像int,double放不进去的,而Integer、Double等包装类就可以放入。
System.exit(status)以及System.err
System.exit(status)不管status为何值都会退出程序。
和return 区别:return是回到上一层,而System.exit(status)是回到最上层即退出程序。
System.exit(0)是正常退出程序,而System.exit(1)或者说非0表示非正常退出程序。
Java中的System.in,System.out,System.err。
System.out用于正常的输出。而System.err用于出错信息的输出(出错信息是自己写的)。在eclipse下System.err输出的信息呈红色,便于自己知道出错了。