摘要:
概念解释: 值传递,传递值,在函数中形参发生的变化不影响实参。 引用传递,传递对象引用,在函数中形参发生的变化影响实参。 1.对于基本数据类型,指的便是变量值得拷贝; 2.对于对象(或String、Integer等包装基本类型),指的是对象地址的拷贝,也就是说所传递的值是对象的地址; 阅读全文
摘要:
转载URL:http://blog.csdn.net/vbirdbest/article/details/80296136 阅读全文
摘要:
转载链接:https://blog.csdn.net/caibaoH/article/details/77005977 阅读全文
摘要:
转载uri:https://www.cnblogs.com/widget90/p/7592507.html 阅读全文
摘要:
<input type=button value="提交" οnclick=submit()> <script language=javascript>function submit(){document.form.formName.submit();}</script> 阅读全文
摘要:
把注册的按钮改成button:<form action="dologin.jsp" method="post">用户<input type="text" name="name"><br>密码<input type="password" name="pass"><br><input type="sub 阅读全文
摘要:
1. getServletPath():获取能够与“url-pattern”中匹配的路径,注意是完全匹配的部分,*的部分不包括。 2.getContextPath():获取项目的根路径 阅读全文