花间一壶酒

导航

2011年7月23日 #

偶然发现的Bug

摘要: Bug ID:6476706Votes63SynopsisError AGENT_ERROR_NO_JNI_ENV printed sometimes to console when JVM finishesCategoryjava:debuggerReported Againstb99Release FixedState3-Accepted,bugPriority:4-LowRelated BugsSubmit Date29-SEP-2006DescriptionThe following error is printed to console when debugger is about 阅读全文

posted @ 2011-07-23 19:37 wrh526 阅读(156) 评论(0) 推荐(0) 编辑

Java小程序之——判断输入的某个年份是否是闰年

摘要: 编写程序,判断给定的某个年份是否是闰年。闰年的判断规则如下:(1)若某个年份能被4整除但不能被100整除,则是闰年。(2)若某个年份能被400整除,则也是闰年。程序一:package exercise;import java.util.Scanner;import java.util.regex.Matcher;import java.util.regex.Pattern;public class IsLeapYear { public static boolean isNum(String str){ boolean isNum=true; for(int i=0;i<str.leng 阅读全文

posted @ 2011-07-23 19:23 wrh526 阅读(1392) 评论(0) 推荐(1) 编辑