2015年3月26日
摘要: hashcode()方法和equals()方法。使用这两个方法,一个对象能够存储或从一个Hashtable,HashMap,HashSet 被检索。hashcode():This method is used to get unique integer for given object. This ... 阅读全文
posted @ 2015-03-26 20:37 dobestself_994395 阅读(167) 评论(0) 推荐(0) 编辑
摘要: public String execute(){ list = new ArrayList(); UserInfo userInfo = new UserInfo(); userInfo.setUsername("u1"); userInfo.setPassword("p1"); userInfo.... 阅读全文
posted @ 2015-03-26 18:23 dobestself_994395 阅读(132) 评论(0) 推荐(0) 编辑
摘要: return 的返回值问题,函数中return一旦有返回值,就不在执行下面的语句,直接跳到函数调用的地方。表单中加上onsubmit="return false;"可以阻止表单提交。表单一定会提交,若不想让表单提交,则改成onsubmit属性就像是这个html对象的一个方法名,其值(一字符串)就是其... 阅读全文
posted @ 2015-03-26 18:19 dobestself_994395 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Calendar cal = Calendar.getInstance(); int year = cal.get(Calendar.YEAR);// 获取年份 int month = cal.get(Calendar.MONTH);// 获取月份 阅读全文
posted @ 2015-03-26 15:49 dobestself_994395 阅读(123) 评论(0) 推荐(0) 编辑
摘要: value为-1时,当点击时不会触发选择事件 阅读全文
posted @ 2015-03-26 15:41 dobestself_994395 阅读(97) 评论(0) 推荐(0) 编辑