摘要: public class Test { public static void main(String[] string){ int i = Integer.MAX_VALUE; System.out.println(i); ... 阅读全文
posted @ 2014-05-14 23:18 mynona 阅读(87) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] string){ int[] i = new int[10]; System.out.println(i.equals(null)); }... 阅读全文
posted @ 2014-05-14 23:09 mynona 阅读(140) 评论(1) 推荐(0) 编辑
摘要: try catch finally 语句中 如果try中有返回语句,如果在fianlly代码块中有对这个值修改的话,并不影响其放回值public class Test { public static void main(String[] string){ System.out.p... 阅读全文
posted @ 2014-05-14 22:57 mynona 阅读(183) 评论(1) 推荐(0) 编辑