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