2013年12月24日

Should .close() be put in finally block or not?

摘要: The following are 3 different ways to close a output writer. The first one puts close() method in try clause, the second one puts close in finally clause, and the third one uses a try-with-resources statement. Which one is the right or the best? 阅读全文

posted @ 2013-12-24 22:21 RobertC 阅读(585) 评论(0) 推荐(0) 编辑

浅析 public static void main(String[] args)

摘要: Java中,main()方法是java应用程序的入口方法。java虚拟机通过main方法找到需要启动的运行程序,并且检查main函数所在类是否被java虚拟机装载。如果没有装载,那么就装载该类,并且装载所有相关的其他类。因此程序在运行的时候,第一个执行的方法(注意是方法,而不是其他的,例如代码块)就是main()方法。通常情况下, 如果要运行一个类的方法,必须首先实例化出来这个类的一个对象,然后通过"对象名.方法名()"的方式来运行方法,但是因为main是程序的入口,这时候还没有实例化对象,因此将main方法声明为static的,这样这个方法就可以直接通过“类名.方法名()”的方式来调用 阅读全文

posted @ 2013-12-24 10:19 RobertC 阅读(4893) 评论(1) 推荐(0) 编辑

导航